I went back through the installation, cleared the cache, and this is the message I get when I click on the admin logo to refresh the admin page...
Code:
30-Oct-2010 13:31:32] PHP Warning: htmlspecialchars() expects at most 3 parameters, 4 given in /home/hranch16/public_html/store/ranch/includes/functions/general.php on line 39
This is what I see in /store/ranch/includes/functions/general.php, lines 37 through 47...
Code:
function zen_output_string($string, $translate = false, $protected = false) {
if ($protected == true) {
return htmlspecialchars($string, ENT_COMPAT, CHARSET, FALSE);
} else {
if ($translate == false) {
return zen_parse_input_field_data($string, array('"' => '"'));
} else {
return zen_parse_input_field_data($string, $translate);
}
}
}