Update instructions for updating Header Tags SEO version 3.2.5 to Header Tags SEO V 3.2.6 by Jack_mcs - oscommerce-solution.com

***************************************************************************************
1) Upload the following files:

  admin/headertags_seo.php
  admin/headertags_fill_tags.php
  admin/includes/functions/header_tags.php
  includes/functions/header_tags.php

---------------------------------------------------------------------------------------
2) In admin/categories.php, 

FIND:

$headertags_editor_str = '<input type="hidden" id="categories_htc_description[' . $languages[$i]['id'] . ']" name="categories_htc_description[' . $languages[$i]['id'] .']" value="' . tep_get_category_htc_description($cInfo->categories_id, $languages[$i]['id']) . '" style="display:none" /><input type="hidden" id="categories_htc_description['.$languages[$i]['id'].']___Config" value="" style="display:none" /><iframe id="categories_htc_description['.$languages[$i]['id'].']___Frame" src="fckeditor/editor/fckeditor.html?InstanceName=categories_htc_description['.$languages[$i]['id'].']&amp;Toolbar=Default" width="600" height="300" frameborder="0" scrolling="no"></iframe>';

REPLACE WITH:

$headertags_editor_str = '<input type="hidden" id="categories_htc_description[' . $languages[$i]['id'] . ']" name="categories_htc_description[' . $languages[$i]['id'] .']" value="' . htmlspecialchars(tep_get_category_htc_description($cInfo->categories_id, $languages[$i]['id'])) . '" style="display:none" /><input type="hidden" id="categories_htc_description['.$languages[$i]['id'].']___Config" value="" style="display:none" /><iframe id="categories_htc_description['.$languages[$i]['id'].']___Frame" src="fckeditor/editor/fckeditor.html?InstanceName=categories_htc_description['.$languages[$i]['id'].']&amp;Toolbar=Default" width="600" height="300" frameborder="0" scrolling="no"></iframe>';

