well, that is why I was worried about corrupted file or version… here is the complete contents of v1.0.2 sp-ban-install.php
<?php
/*
Simple:Press
Ban plugin install/upgrade routine
$LastChangedDate: 2013-02-17 12:52:14 -0700 (Sun, 17 Feb 2013) $
$Rev: 9854 $
*/
if (preg_match('#'.basename(__FILE__).'#', $_SERVER['PHP_SELF'])) die('Access denied - you cannot directly call this file');
function sp_ban_do_install() {
$options = sp_get_option('ban');
if (empty($options)) {
$init = array();
sp_add_option('banned_ips', $init);
sp_add_option('banned_ip_ranges', $init);
sp_add_option('banned_hostnames', $init);
sp_add_option('banned_agents', $init);
sp_add_option('banned_users', $init);
$options['general-message'] = __('You have been banned from this forum', 'sp-ban');
$options['user-message'] = __('You have been banned from this forum', 'sp-ban');
$options['ug-message'] = __('Your account has been temporarily restricted and moved to a different usergroup', 'sp-ban');
$options['restore-message'] = __('Your ban has expired and your account has been restored', 'sp-ban');
$options['dbversion'] = SPBANDBVERSION;
sp_update_option('ban', $options);
}
# make sure permalink include pm stuff
sp_update_permalink(true);
}
# sp reactivated.
function sp_ban_do_sp_activate() {
}
# permissions reset
function sp_ban_do_reset_permissions() {
}
?>
that code is definitely in there… I just downloaded from our plugins download page and verified its in that archive too…