Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

What's this Junk??


rmyles

Recommended Posts

check your application_top.php and header.php files in your

/catalog folder.

 

Could be a missing ; at the end of one of yor lines I think

 

anyone else's thoughts ?

Special Effects / 3d + Flash

Link to comment
Share on other sites

I did a global directory search on that string appearing at the top of your page. It comes from catalog/includes/functions/html_output.php. Here's the function. I bolded the text in question.

 

function tep_get_country_list($name, $selected = '', $parameters = '') {

$countries_array = array(array('id' => '', 'text' => PULL_DOWN_DEFAULT));

$countries = tep_get_countries();

for ($i=0; $i<sizeof($countries); $i++) {

$countries_array[] = array('id' => $countries[$i]['countries_id'], 'text' => $countries[$i]['countries_name']);

}

 

return tep_draw_pull_down_menu($name, $countries_array, $selected, $parameters);

}

?>

 

Why it's there. I don't know. Maybe someone else has an idea.

 

Mark

Link to comment
Share on other sites

Since I accidentally managed to create a similar mishap last night, although on a much more grand scale, try looking for a missing <?php somewhere in any file you have changed. In my own case when I copied and pasted a file I missed the opening <?php statement and it created quite a mess until I figured out which file it was. Can't say that the same is true for your particular problem, but it looks similar. Good luck.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...