The Model List errors are all caused by a snippet of link code I copied without examining deeply. It needs to have its ampersands escaped.
In /includes/modules/your_template/model_list.php, replace lines 36 and 47:
PHP Code:
$content .= '<h3><a href="index.php?main_page=advanced_search_result&search_in_description=1&keyword=' . $mfrs_name . '" title="' . MODEL_LIST_ALT_LINK . $mfrs_name . '">' . /*$mfrs_name*/ title_image_exists($mfrs_name, 'model_list_mfr' . $model_list[$mfr_key]['mfrs_id']) . '</a>' . MODEL_LIST_MFR_COMMENT . '</h3>' . "\n";
//should be
$content .= '<h3><a href="index.php?main_page=advanced_search_result&search_in_description=1&keyword=' . $mfrs_name . '" title="' . MODEL_LIST_ALT_LINK . $mfrs_name . '">' . /*$mfrs_name*/ title_image_exists($mfrs_name, 'model_list_mfr' . $model_list[$mfr_key]['mfrs_id']) . '</a>' . MODEL_LIST_MFR_COMMENT . '</h3>' . "\n";
$content .= ' <li><a href="index.php?main_page=advanced_search_result&search_in_description=1&keyword=' . $current_model . '" title="' . MODEL_LIST_ALT_LINK . $current_model . '">' . $current_model . '</a></li>' . "\n";
//should be
$content .= ' <li><a href="index.php?main_page=advanced_search_result&search_in_description=1&keyword=' . $current_model . '" title="' . MODEL_LIST_ALT_LINK . $current_model . '">' . $current_model . '</a></li>' . "\n";
Bookmarks