1
Hi All,
Just installed Zentrack when i click on the module i get the error as shown below. Thanks for any help
getSetting("system_name"); /* ** USER ADMINISTRATION COMMON FIELDS */ $user_fields = array( "login" => "alphanum", "access_level" => "int", "lname" => "text", "fname" => "text", "initials" => "alphanum", "email" => "email", "notes" => "text", "homebin" => "int", "active" => "int" ); $user_required = array("login","lname","initials"); $access_fields = array( "user_id" => "int", "bin_id" => "int", "lvl" => "int", "notes" => "text" ); $access_required = array("user_id","bin_id"); /* ** NUMBER PULLDOWN FUNCTION */ function admin_number_pulldown( $max = '', $sel = '' ) { static $cache_pulldown; if( is_array($cache_pulldown) && $cache_pulldown[0] == $max && $cache_pulldown[1] == $sel ) { return $cache_pulldown[2]; } if( !$max ) $max = 1; $text = "---\n"; for( $i=1; $i<=$max; $i++ ) { $s = ($i == $sel)? " selected" : ""; $text .= "$i\n"; } $cache_pulldown = array($max,$sel,$text); return $text; } function getPriCount( $current, $lowest ) { return 1 + ($current - $lowest); } /* ** SETTINGS ADMINISTRATION COMMON FIELDS */ $settings_fields = array( "name" => "alphanum", "value" => "html", "description" => "html" ); $settings_required = array("name","value"); if( !isset($TODO) ) { $TODO = null; } ?>
Fatal error: Class 'MyTextSanitizer' not found in C:\wamp\www\Helpdesk\modules\zentrack\admin\admin_index.php on line 12
Cheers