View Single Post
  #26  
Old 10-13-2009, 10:36 AM
 
digiemp digiemp is offline
 

Senior Member
  
Join Date: Aug 2007
Posts: 192
 

Default Re: Page Title in 4.2

Thank you. I have added a comma (see code below), but now get the same error for line 84. I guess I'm having trouble finding where to add/remove commas. I've added/removed them from a few different places now and each time gives me an error on a different line.

Code:
define('IMPORT_CATEGORIES', 1); $import_specification["CATEGORIES"] = array( "category_page_title" => array(), #Added by CFL Systems for category page title "script" => "/include/import_categories.php", "tpls" => array( "main/import_option_default_category.tpl", "main/import_option_category_path_sep.tpl", "main/import_option_images_directory.tpl"), "export_tpls" => array( "main/export_option_export_images.tpl", "main/export_option_category_path_sep.tpl"), "permissions" => "A", # Only admin can import categories "need_provider" => 0, "finalize" => true, "export_sql" => "SELECT categoryid FROM $sql_tbl[categories] ORDER BY categoryid_path, order_by", "orderby" => 25, "depending" => array("C","CI","CT"), "columns" => array( "categoryid" => array( "is_key" => true, "type" => "N", "required" => false, "default" => 0), "category" => array( "is_key" => true, "required" => true), "clean_url" => array( "type" => "U" ), "descr" => array( "eol_safe" => true), "meta_keywords" => array(), "meta_description" => array(), "override_child_meta" => array( "type" => "B", "default" => "N"), "avail" => array( "type" => "B", "default" => "Y"), "orderby" => array( "type" => "N", "default" => 0), "views_stats" => array( "type" => "N"), "product_count" => array( "type" => "N"), "membershipid" => array( "array" => true, "type" => "N"), "membership" => array( "array" => true), "icon" => array( "type" => "I", "itype" => "C") ) );

Line 83, 84, 85:
Code:
"export_tpls" => array( "main/export_option_export_images.tpl", "main/export_option_category_path_sep.tpl"),
__________________
version 4.4.2
Reply With Quote