2006-06-06 18:11 Kiran Chitragar * [r2260] includes/languages/affiliate_english.php, includes/languages/affiliate_espanol.php, includes/languages/affiliate_french.php, includes/languages/affiliate_german.php: define('BOX_HEADING_AFFILIATE', 'Affiliate Program'); was causing infobox heading not to read from database and show modified infobox title. Commented above line. 2006-06-07 15:05 Charles Williams, Jr. * [r2262] branches/loaded62b2b/admin/categories.php, branches/loaded62pro/admin/categories.php, admin/categories.php: Bug#501 - bad code was allowed in the categories.php module. The old code has now been completely removed. 2006-06-09 19:48 Michael Day * [r2286] branches/loaded62b2b/includes/modules/payment/worldpay.php, branches/loaded62pro/includes/modules/payment/worldpay.php, includes/modules/payment/worldpay.php: Fix worldpay callback bug 2006-06-09 19:53 Michael Day * [r2287] branches/loaded62b2b/templates/content/wpcallback.tpl.php, branches/loaded62pro/templates/content/wpcallback.tpl.php, templates/content/wpcallback.tpl.php: Fix worldpay callback bug 2006-06-10 00:04 Scott Logsdon * [r2297] checkout_process.php: updated catalog/checkout_process.php (all versions): problem with the logic on line 67: if (!MODULE_PAYMENT_AUTHORIZENET_STATUS) { $payment_modules->before_process(); } if not using authorizenet, the above variable is undefined and therefore "false" causing code within the IF statement not to execute. This statement was re-written to: if (MODULE_PAYMENT_AUTHORIZENET_STATUS == 'True') { } else { $payment_modules->before_process(); } This fixes the Linkpoint bug. 2006-06-10 01:48 Scott Logsdon * [r2304] checkout_process.php: updated catalog/checkout_process.php (all versions): - if not using authorizenet, MODULE_PAYMENT_AUTHORIZENET_STATUS is undefined causing the code within the IF statement not to execute. - this fixes the Linkpoint bug. FIND (around line 64): // load the before_process function from the payment modules // Authorize.net processing has move this called to a later point // This is maintained for compatiblity with all other modules if (!MODULE_PAYMENT_AUTHORIZENET_STATUS) { $payment_modules->before_process(); } if((MODULE_PAYMENT_PAYPAL_DP_STATUS == 'True' && $payment == 'paypal_dp') || (MODULE_PAYMENT_PAYPAL_EC_STATUS == 'True' && $payment == 'paypal_ec')) { $payment_modules->before_process(); } if((MODULE_PAYMENT_PAYPAL_STATUS == 'True')&&($payment == 'paypal') ){ $payment_modules->before_process(); include(DIR_WS_MODULES . 'payment/paypal/catalog/checkout_process.inc.php'); } REPLACE with: // load the before_process function from the payment modules. // Authorize.net/QuickCommerce/PlugnPlay processing - this called moved to a later point // This is maintained for compatiblity with all other modules // update for incorrect logic - start - 06/09/06 - datazen /* old code commented out if (!MODULE_PAYMENT_AUTHORIZENET_STATUS) { $payment_modules->before_process(); } */ if((MODULE_PAYMENT_AUTHORIZENET_STATUS == 'True') || (MODULE_PAYMENT_QUICKCOMMERCE_STATUS =='True') || (MODULE_PAYMENT_PLUGNPAY_STATUS =='True')) { } elseif((MODULE_PAYMENT_PAYPAL_STATUS == 'True') && ($payment == 'paypal')) { $payment_modules->before_process(); include(DIR_WS_MODULES . 'payment/paypal/catalog/checkout_process.inc.php'); } else { $payment_modules->before_process(); } // update for incorrect logic - end 2006-06-10 03:54 Scott Logsdon * [r2308] admin/includes/boxes/crypt.php, admin/includes/languages/english.php, admin/includes/languages/espanol.php, admin/includes/languages/french.php, admin/includes/languages/german.php: B2B bug #495 - fixed (all versions) Encrypt/Decrypt (with DHTML menu OFF) - in column_left, Purge CC Data and Update CC Data have spaces in the tags. When you mouse over the link, you see the underline is also underlining spaces. To fix, I removed the spaces from the defines and edited the box php. Edit admin/includes/languages/english.php FIND: define('BOX_CRYPT_CONVERT', '  Convert CC Data'); define('BOX_CRYPT_PURGE', '  Purge CC Data'); define('BOX_CRYPT_UPDATE', '  Update CC Data'); CHANGE to: define('BOX_CRYPT_CONVERT', 'Convert CC Data'); define('BOX_CRYPT_PURGE', 'Purge CC Data'); define('BOX_CRYPT_UPDATE', 'Update CC Data'); Edit admin/includes/boxes/crypt.php FIND: //Admin begin tep_admin_files_boxes(FILENAME_CRYPT, BOX_CRYPT_CONFIGURATION, 'SSL') . tep_admin_files_boxes(FILENAME_EDIT_KEY, BOX_CRYPT_KEYS, 'SSL') . tep_admin_files_boxes('', BOX_CRYPT_CC_DATA) . tep_admin_files_boxes(FILENAME_CRYPT_UPDATE, BOX_CRYPT_UPDATE, 'SSL') . //tep_admin_files_boxes(FILENAME_CRYPT_CONVERT, BOX_CRYPT_CONVERT) . tep_admin_files_boxes(FILENAME_CRYPT_PURGE, BOX_CRYPT_PURGE, 'SSL') . tep_admin_files_boxes(FILENAME_EDIT_KEY_HELP, BOX_CRYPT_HELP) . tep_admin_files_boxes(FILENAME_CRYPT_TEST, BOX_CRYPT_TEST, 'SSL')); CHANGE to: //Admin begin tep_admin_files_boxes(FILENAME_CRYPT, BOX_CRYPT_CONFIGURATION, 'SSL') . tep_admin_files_boxes(FILENAME_EDIT_KEY, BOX_CRYPT_KEYS, 'SSL') . tep_admin_files_boxes('', BOX_CRYPT_CC_DATA) . '  ' . tep_admin_files_boxes(FILENAME_CRYPT_UPDATE, BOX_CRYPT_UPDATE, 'SSL') . //'  ' . tep_admin_files_boxes(FILENAME_CRYPT_CONVERT, BOX_CRYPT_CONVERT) '  ' . tep_admin_files_boxes(FILENAME_CRYPT_PURGE, BOX_CRYPT_PURGE, 'SSL') . tep_admin_files_boxes(FILENAME_EDIT_KEY_HELP, BOX_CRYPT_HELP) . tep_admin_files_boxes(FILENAME_CRYPT_TEST, BOX_CRYPT_TEST, 'SSL')); 2006-06-10 04:42 Scott Logsdon * [r2311] admin/create_order.php: fixed bug #481 - In Admin->Customers/Orders->Create Order (both step 1 and 2), if you click Confirm when fields are blank, a blank record is created in the orders database. This should error check and loop back if blank correct? Fixed admin/create_order.php. 2006-06-10 16:20 Scott Logsdon * [r2321] admin/customers.php, admin/edit_orders.php: - update admin/edit_orders.php (PRO and STD) for bug fix # B2B 447, B2B 448. This was fixed in B2B but not rolled to other versions. - update admin/customers.php (PRO and STD) for bug fix # B2B 445. This was fixed in B2B but not rolled to other versions. FIND (around line 638): echo tep_draw_radio_field('customers_group_ra', '0', false, $cInfo->customers_group_ra) . '  ' . ENTRY_CUSTOMERS_GROUP_RA_NO . '  ' . tep_draw_radio_field('customers_group_ra', '1', false, $cInfo->customers_group_ra) . '  ' . ENTRY_CUSTOMERS_GROUP_RA_YES; REPLACE with: echo tep_draw_radio_field('customers_group_ra', '0', true,$cInfo->customers_group_ra) . '  ' . ENTRY_CUSTOMERS_GROUP_RA_NO . '  ' . tep_draw_radio_field('customers_group_ra', '1', false, $cInfo->customers_group_ra) . '  ' . ENTRY_CUSTOMERS_GROUP_RA_YES; 2006-06-10 16:46 Scott Logsdon * [r2323] admin/c_orders.php: update admin/c_orders.php (all versions) for Bug # B2B 488 FIND: CHANGE to: 2006-06-10 17:31 Scott Logsdon * [r2329] admin/create_order.php: update admin/create_order.php (all versions) for Bug # B2B 490. Fixed table/cell problems. 2006-06-12 12:47 Tom O'Neill * [r2348] admin/includes/languages/english.php, admin/includes/languages/english/template_configuration.php, admin/includes/languages/espanol/infobox_configuration.php, admin/includes/languages/espanol/template_configuration.php, admin/includes/languages/french/infobox_configuration.php, admin/includes/languages/french/template_configuration.php, admin/includes/languages/german/template_configuration.php, admin/template_configuration.php, admin/template_configuration1.php, includes/ATS_template_application_top.php, includes/CRE_template_application_top.php, includes/template_application_top.php: 1. changed the $modules_folder define for lagecy template to it looks only in the templates or sites includes/modules/mainpage/ folder. It will use the templates module folder first then if that does not exists it will look in catalogs includes/modules/mainpage directory if that has been added. the default index page now use what ever is set in the $modules_folder variable. this is set in the (CCC)_template_application_top.php file 2. change template_configuration admin page a. it now list the template type it checks for a template.php file then use the TEMPLATE_SYSTEM define if the file template.php does not exsist then it is a cre_legacy. This was done so parts of the code can be switch between the different template systems code $template_type = cre_legacy (hardcoded) ats bts sts b. it now list the location used to pull modules from. it used the define in the template.php. if not it first checks the template then the store. it it is a cre style template then is uses the define in the configure.php 2006-06-12 17:55 Tom O'Neill * [r2359] templates/Original/images/logo.gif: Change logo to new one 2006-06-12 18:10 Tom O'Neill * [r2363] admin/images/loaded_header_logo.gif, admin/includes/header.php: Change admin logo to new one 2006-06-13 12:11 Tom O'Neill * [r2367] admin/edit_key_help.php, admin/includes/languages/english/help/edit_key_help.php, admin/includes/languages/espanol/help/edit_key_help.php, admin/includes/languages/french/help/edit_key_help.php, admin/includes/languages/german/help/edit_key_help.php: [#494] Encrypt/Decrypt - missing defines added define for default page 2006-06-13 12:16 Tom O'Neill * [r2368] admin/edit_key_help.php: [#494] Encrypt/Decrypt - missing defines Fixed alt text define, and fixed return to main page 2006-06-13 13:44 Tom O'Neill * [r2377] includes/CRE_template_application_top.php: Removed trailing slash from DIR_FS_TEMPLATE_BOXES contents 2006-06-13 14:01 Tom O'Neill * [r2380] admin/header_tags_controller.php: [#503] header_tags_controller.php One of the message stack lines was missing the location element of the string. added , 'error' . 2006-06-15 01:25 Scott Logsdon * [r2385] admin/coupon_admin.php: Repaired bug # 411 (all versions) Coupon_Admin.php is not presenting the correct dates - uploaded to SVN FIND (around line 649): $coupon_products = $coupon['restrict_to_products']; $coupon_categories = $coupon['restrict_to_categories']; BENEATH it, ADD: $coupon_startdate = $coupon['coupon_start_date']; $coupon_finishdate = $coupon['coupon_expire_date']; FIND (around line 739): REPLACE with: 2006-06-15 02:05 Scott Logsdon * [r2388] admin/coupon_admin.php: repaired bug # 521 - admin/coupon_admin.php - undefined COUPON_BUTTON_PREVIEW. repaired bug # 522 - admin/coupon_admin.php - buttons are on wrong sides. changed to conform. Back button on left, Preview button on Right. repaired bug # 523 - admin/coupon_admin.php - undefined COUPON_BUTTON_CONFIRM, COUPON_BUTTON_BACK FIND (around line 765): "> REPLACE with: "> 2006-06-15 22:25 Scott Logsdon * [r2393] admin/includes/languages/english/stats_daily_products_sales_report.php, admin/stats_daily_products_sales_report.php: 1. Repaired bug # 434 - admin/stats_daily_product_sales_report.php - Daily Value not formatted properly. 2. Updated admin/stats_daily_product_sales_report.php to include CSV download. Edit catalog/admin/includes/languages/$language/stats_dail y_products_sales_report.php Add before the ending ?> define('TEXT_BUTTON_REPORT_SAVE','Save CSV'); Edit catalog/admin/stats_daily_products_sales_report.php FIND (around line 11): $currencies = new currencies(); BENEATH it, ADD: // start csv - bounce csv string back as file if (isset($_POST['csv'])) { if ($HTTP_POST_VARS['saveas']) { // rebound posted csv as save file $savename= $HTTP_POST_VARS['saveas'] . ".csv"; } else $savename='unknown.csv'; $csv_string = ''; if ($HTTP_POST_VARS['csv']) $csv_string=$HTTP_POST_VARS['csv']; if (strlen($csv_string)>0){ header("Expires: Mon, 26 Nov 1962 00:00:00 GMT"); header("Last-Modified: " . gmdate('D,d M Y H:i:s') . ' GMT'); header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache"); header("Content-Type: Application/octet-stream"); header("Content-Disposition: attachment; filename=$savename"); echo $csv_string; } else echo "CSV string empty"; exit; }; //end csv FIND (around line 84):     '"> . . . . . format($products['howmuch']); ?>  REPLACE with: . . . . . FIND (around line 136): while ($products = tep_db_fetch_array($products_query)) { echo '' . TABLE_DAILY_VALUE . round($products['dailyvalue'],2) . ''; } ?> BENEATH it, ADD:
Just BEFORE the ending ?>, ADD: function mirror_out ($field) { global $csv_accum; echo $field; $field = strip_tags($field); $field = ereg_replace (",","",$field); if ($csv_accum=='') $csv_accum=$field; else {if (strrpos($csv_accum,chr(10)) == (strlen($csv_accum)-1)) $csv_accum .= $field; else $csv_accum .= "," . $field; }; return; } 2006-06-16 02:07 Scott Logsdon * [r2399] admin/create_order.php: updated admin/create_order.php (all versions) - Step 1 width was too wide. Corrected. 2006-06-16 03:42 Scott Logsdon * [r2405] admin/includes/languages/english/stats_daily_products_sales_report.php, admin/stats_daily_products_sales_report.php: correction to currency format on Daily Value 2006-06-16 15:40 Scott Logsdon * [r2407] admin/feature_not_present.php, admin/images/button_upgrade_now.gif, admin/includes/languages/english/feature_not_present.php, admin/includes/languages/espanol/feature_not_present.php, admin/includes/languages/french/feature_not_present.php, admin/includes/languages/german/feature_not_present.php: 2. updated admin/feature_not_present.php - (Std/Pro) repaired undefined HEADING_TITLE by addding missing language file admin/includes/languages/$language/feature_not_presen t.php 3. updated admin/feature_not_present.php (Std/Pro) - added Upgrade Now button to take you to CRE order/upgrade page. 2006-06-16 17:28 Tom O'Neill * [r2410] admin/includes/classes/box.php: [#529] Admin DHTML menus does not always function The problem was the variable $selected which was not being extracted correctly if a SID was present. I changed the code to account for a SID being present in the link. 2006-06-16 17:48 Scott Logsdon * [r2412] admin/create_account_process.php, admin/includes/modules/account_details.php: 4. fixed bug # 532 - error checking in Create Account area. Edit admin/create_account_process.php FIND (around line line 105): if (!tep_validate_email($email_address)) { $error = true; $entry_email_address_check_error = true; } else { $entry_email_address_check_error = false; } BENEATH it, ADD: if (ACCOUNT_COMPANY == 'true') { if (strlen($company) < ENTRY_COMPANY_MIN_LENGTH) { $error = true; $entry_company_error = true; } else { $entry_company_error = false; } } FIND (around line 121): if (strlen($street_address) < ENTRY_STREET_ADDRESS_MIN_LENGTH) { $error = true; $entry_street_address_error = true; } else { $entry_street_address_error = false; } BENEATH it, ADD: if (ACCOUNT_SUBURB == 'true') { if (!$suburb) { $error = true; $entry_suburb_error = true; } else { $entry_suburb_error = false; } } Edit admin/includes/modules/account_details.php FIND (around line 314): $zones_values['zone_name'], 'text' => $zones_values['zone_name']); } echo tep_draw_pull_down_menu('state', $zones_array) . ' ' . ENTRY_STATE_ERROR; } else { echo tep_draw_input_field('state') . ' ' . ENTRY_STATE_ERROR; } } else { echo $state . tep_draw_hidden_field('zone_id') . tep_draw_hidden_field('state'); } } else { echo tep_draw_input_field('state', sbs_get_zone_name($account['entry_country_id'], $account['entry_zone_id'], $account['entry_state'])) . ' ' . ENTRY_STATE_TEXT; } ?> REPLACE with: $zones_values['zone_name'], 'text' => $zones_values['zone_name']); } echo tep_draw_pull_down_menu('state', $zones_array) . ' ' . ENTRY_STATE_ERROR; } else { echo tep_draw_input_field('state') . ' ' . ENTRY_STATE_ERROR; } } else { if ($error) { echo tep_draw_input_field('state'); }else{ echo $state . tep_draw_hidden_field('zone_id') . tep_draw_hidden_field('state'); } } } else { echo tep_draw_input_field('state', sbs_get_zone_name($account['entry_country_id'], $account['entry_zone_id'], $account['entry_state'])) . ' ' . ENTRY_STATE_TEXT; } ?> FIND (around line 351): REPLACE with: FIND (around line 401): REPLACE with: 2006-06-16 18:57 Michael Day * [r2415] branches/loaded62b2b/templates/content/allprods.tpl.php, branches/loaded62pro/templates/content/allprods.tpl.php, templates/content/allprods.tpl.php: CRE Loaded Critical Bug Fix(bug id 511) 2006-06-17 02:07 Scott Logsdon * [r2418] admin/create_account_process.php, admin/create_account_success.php, admin/includes/languages/english.php, admin/includes/languages/english/create_account_success.php, admin/includes/languages/english/images/buttons/button_admin_home.gif, admin/includes/languages/english/images/buttons/button_create_customer.gif, admin/includes/languages/english/images/buttons/button_create_order.gif, admin/includes/languages/espanol/images/buttons/button_admin_home.gif, admin/includes/languages/espanol/images/buttons/button_create_customer.gif, admin/includes/languages/espanol/images/buttons/button_create_order.gif, admin/includes/languages/french/images/buttons/button_admin_home.gif, admin/includes/languages/french/images/buttons/button_create_customer.gif, admin/includes/languages/french/images/buttons/button_create_order.gif, admin/includes/languages/german/images/buttons/button_admin_home.gif, admin/includes/languages/german/images/buttons/button_create_customer.gif, admin/includes/languages/german/images/buttons/button_create_order.gif, admin/includes/modules/account_details.php: - repaired bug # 526 - (all versions) admin/includes/modules/account_details.php, admin/create_order_process, admin/includes/languages/$language.php - fixed bug # 532 - error checking in Create Account area. see changelog for details. 2006-06-17 02:37 Scott Logsdon * [r2421] admin/includes/languages/english/create_account_success.php, admin/includes/languages/espanol/create_account_success.php, admin/includes/languages/french/create_account_success.php, admin/includes/languages/german/create_account_success.php: updated language files for previous commit 2006-06-17 09:38 avinash * [r2424] includes/filenames.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 09:40 avinash * [r2425] includes/languages/english.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 09:50 avinash * [r2426] templates/Original/boxes/calendar.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 10:50 avinash * [r2427] templates/Original/boxes/customer_gv.php, templates/Original/boxes/donate.php, templates/Original/boxes/downloads.php, templates/Original/boxes/information_table.php, templates/Original/boxes/languages.php, templates/Original/boxes/loginbox.php, templates/Original/boxes/whos_online.php, templates/Original/footer.php, templates/Original/main_page.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 11:14 avinash * [r2428] templates/Pixame_v1/boxes.tpl.php, templates/Pixame_v1/boxes/calendar.php, templates/Pixame_v1/boxes/customer_gv.php, templates/Pixame_v1/boxes/donate.php, templates/Pixame_v1/boxes/downloads.php, templates/Pixame_v1/boxes/information_table.php, templates/Pixame_v1/boxes/languages.php, templates/Pixame_v1/boxes/loginbox.php, templates/Pixame_v1/boxes/whos_online.php, templates/Pixame_v1/footer.php, templates/Pixame_v1/header.php, templates/Pixame_v1/main_page.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 11:56 avinash * [r2429] templates/Helius/boxes.tpl.php, templates/Helius/boxes/calendar.php, templates/Helius/boxes/customer_gv.php, templates/Helius/boxes/donate.php, templates/Helius/boxes/downloads.php, templates/Helius/boxes/information_table.php, templates/Helius/boxes/languages.php, templates/Helius/boxes/loginbox.php, templates/Helius/boxes/whos_online.php, templates/Helius/main_page.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 12:07 avinash * [r2430] templates/Helius/boxes/whos_online.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 12:37 avinash * [r2431] templates/Helius1/main_page.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 12:52 avinash * [r2432] templates/E-vector/boxes/calendar.php, templates/E-vector/boxes/customer_gv.php, templates/E-vector/boxes/donate.php, templates/E-vector/boxes/downloads.php, templates/E-vector/boxes/information_table.php, templates/E-vector/boxes/languages.php, templates/E-vector/boxes/loginbox.php, templates/E-vector/boxes/whos_online.php, templates/E-vector/header.php, templates/E-vector/main_page.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:02 avinash * [r2433] templates/E-vector/boxes/calendar.php, templates/E-vector/boxes/customer_gv.php, templates/E-vector/boxes/donate.php, templates/E-vector/boxes/downloads.php, templates/E-vector/boxes/information_table.php, templates/E-vector/boxes/languages.php, templates/E-vector/boxes/loginbox.php, templates/E-vector/boxes/whos_online.php, templates/E-vector/header.php, templates/E-vector/main_page.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:34 avinash * [r2434] templates/E-vector/main_page.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:38 avinash * [r2435] templates/E-vector/boxes/whos_online.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:39 avinash * [r2436] templates/E-vector/boxes/loginbox.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:41 avinash * [r2437] templates/E-vector/boxes/languages.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:42 avinash * [r2438] templates/E-vector/boxes/information_table.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:44 avinash * [r2439] templates/E-vector/boxes/downloads.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:48 avinash * [r2440] templates/E-vector/boxes/donate.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:49 avinash * [r2441] templates/E-vector/boxes/customer_gv.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 13:56 avinash * [r2442] templates/E-vector/boxes/calendar.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 14:43 avinash * [r2443] includes/filenames.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-17 14:45 avinash * [r2444] includes/languages/english.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-19 05:13 Scott Logsdon * [r2448] admin/includes/modules/afs_v1.0/images/Thumbs.db: removed extra Thumbs files from images folders 2006-06-20 08:08 avinash * [r2454] includes/filenames.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-20 08:12 avinash * [r2455] includes/languages/english/product_info.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-20 08:14 avinash * [r2456] templates/content/Order_Info.tpl.php, templates/content/account_history_info.tpl.php, templates/content/address_book_process.tpl.php, templates/content/affiliate_details.tpl.php, templates/content/affiliate_signup.tpl.php, templates/content/checkout_success.tpl.php, templates/content/product_info.tpl.php, templates/content/shopping_cart.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-20 08:47 avinash * [r2457] templates/content/affiliate_details.tpl.php, templates/content/affiliate_signup.tpl.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-21 18:27 Scott Logsdon * [r2459] templates/Original/extra_html_output.php: catalog/templates/Original/extra_html_output.php - fixed table/cell problems with missing/extra tags. 2006-06-22 12:15 Kiran Chitragar * [r2464] branches/loaded62pro/admin/define_mainpage.php, admin/define_mainpage.php: Commented code for dropdown of language selection. tinymce was not responding to change of language. 2006-06-22 13:47 Kiran Chitragar * [r2467] admin/categories.php: Fixed bug no #490 from CREForge 2006-06-22 14:03 Scott Logsdon * [r2468] admin/includes/boxes/affiliate.php: [#534] - updated bug [#534] (all versions) catalog/admin/includes/boxes/affiliate.php - fix FIND: (around line 32): 'link' => tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('selected_box')) . 'selected_box=affiliate')); REPLACE with: 'link' => tep_href_link(FILENAME_AFFILIATE_SUMMARY, 'selected_box=affiliate')); 2006-06-22 14:40 Kiran Chitragar * [r2472] admin/includes/languages/english/images/buttons/button_return.gif: Updated button CREForge bug #533 2006-06-22 15:43 Scott Logsdon * [r2473] admin/includes/languages/english/information.php, admin/includes/languages/espanol/information.php, admin/includes/languages/french/information.php, admin/includes/languages/german/information.php, admin/information_manager.php: [T47168] - replaced all instances of SUCCED_INFORMATION with SUCCEED_INFORMATION 2006-06-22 16:47 Scott Logsdon * [r2479] admin/includes/languages/english.php, admin/includes/languages/espanol.php, admin/includes/languages/french.php, admin/includes/languages/german.php: [T47168] [#544] - Reviews Manager does not show any Reviews. This is not a bug. There are 2 Reviews sections. Product Reviews - is in Admin->Catalog->Reviews. Article Reviews - is in Admin->Article Manager->Reviews. I have renamed this to Admin->Article Manager->Article Reviews to keep the confusion at a minimum. EDIT catalog/admin/includes/english.php FIND (around line 686): define('BOX_ARTICLES_REVIEWS', 'Reviews'); REPLACE with: define('BOX_ARTICLES_REVIEWS', 'Article Reviews'); 2006-06-22 17:20 Scott Logsdon * [r2482] admin/includes/boxes/design_controls.php: [T47168] - In the infobox admin page there is nothing there - should there be? - commented out the InfoBox Admin link due to it being empty. admin/includes/boxes/design_controls.php (all versions) 2006-06-23 08:07 Kiran Chitragar * [r2485] includes/modules/articles_xsell.php: Updated for Helius type templates. 2006-06-23 08:09 Kiran Chitragar * [r2486] templates/E-vector/boxes/example.php, templates/Helius/boxes/example.php, templates/Original/boxes/example.php, templates/Pixame_v1/boxes/example.php: Added example infoboxes with short instructions, what are the parts needs changes. 2006-06-23 15:25 Kiran Chitragar * [r2491] admin/products_attributes.php: Enhanced file missing and good file cell bg to highlight. 2006-06-24 04:35 Scott Logsdon * [r2494] includes/application_top.php, templates/E-vector/images/buttons/english/button_.psd, templates/E-vector/images/buttons/english/button_view_cart.gif, templates/Helius/images/buttons/english/button_.psd, templates/Helius/images/buttons/english/button_view_cart.gif, templates/Original/images/buttons/english/button_.psd, templates/Original/images/buttons/english/button_view_cart.gif, templates/Original/images/buttons/espanol/button_view_cart.gif, templates/Original/images/buttons/french/button_view_cart.gif, templates/Original/images/buttons/german/button_view_cart.gif, templates/Pixame_v1/images/buttons/english/button_.psd, templates/Pixame_v1/images/buttons/english/button_view_cart.gif, templates/content/product_info.tpl.php, templates/content/product_reviews_info.tpl.php, templates/content/wishlist.tpl.php, wishlist.php: - re-worked wishlist code - added "move" and "delete" options to be product specific. added "View Cart", "Continue Shopping" and "Update" buttons. - repaired code to allow Guest to send to Wishlist. - files affected: catalog/wishlist.tpl.php catalog/wishlist.php cataling/includes/application_top.php catalog/templates/content/wishlist.tpl.php catalog/templates/content/product_info.tpl.php catalog/templates/content/product_reviews_info.php catalog/templates/$template/images/buttons/english/bu tton_view_cart.gif - [#63] product_reviews.php BUG - fixed when re-working wishlist code. 2006-06-24 04:37 Scott Logsdon * [r2495] templates/Original/images/buttons/french/button_add_address.gif, templates/Original/images/buttons/french/button_add_wishlist.gif, templates/Original/images/buttons/french/button_address.gif, templates/Original/images/buttons/french/button_address_book.gif, templates/Original/images/buttons/french/button_affiliate_banners.gif, templates/Original/images/buttons/french/button_affiliate_build_a_link.gif, templates/Original/images/buttons/french/button_affiliate_clickthroughs.gif, templates/Original/images/buttons/french/button_affiliate_sales.gif, templates/Original/images/buttons/french/button_back.gif, templates/Original/images/buttons/french/button_banners.gif, templates/Original/images/buttons/french/button_buy_now.gif, templates/Original/images/buttons/french/button_change_address.gif, templates/Original/images/buttons/french/button_checkout.gif, templates/Original/images/buttons/french/button_confirm.gif, templates/Original/images/buttons/french/button_confirm_order.gif, templates/Original/images/buttons/french/button_continue.gif, templates/Original/images/buttons/french/button_continue_shopping.gif, templates/Original/images/buttons/french/button_create_account.gif, templates/Original/images/buttons/french/button_delete.gif, templates/Original/images/buttons/french/button_download.gif, templates/Original/images/buttons/french/button_edit_account.gif, templates/Original/images/buttons/french/button_history.gif, templates/Original/images/buttons/french/button_in_cart.gif, templates/Original/images/buttons/french/button_login.gif, templates/Original/images/buttons/french/button_notifications.gif, templates/Original/images/buttons/french/button_ppcheckout.gif, templates/Original/images/buttons/french/button_printorder.gif, templates/Original/images/buttons/french/button_quick_find.gif, templates/Original/images/buttons/french/button_redeem.gif, templates/Original/images/buttons/french/button_remove_notifications.gif, templates/Original/images/buttons/french/button_reviews.gif, templates/Original/images/buttons/french/button_search.gif, templates/Original/images/buttons/french/button_send.gif, templates/Original/images/buttons/french/button_shipping_options.gif, templates/Original/images/buttons/french/button_submit_link.gif, templates/Original/images/buttons/french/button_tell_a_friend.gif, templates/Original/images/buttons/french/button_update.gif, templates/Original/images/buttons/french/button_update_cart.gif, templates/Original/images/buttons/french/button_write_review.gif, templates/Original/images/buttons/french/image_enlarge.gif, templates/Original/images/buttons/french/images/button_view_cart.gif, templates/Original/images/buttons/french/small_delete.gif, templates/Original/images/buttons/french/small_edit.gif, templates/Original/images/buttons/french/small_view.gif: french language files in the wrong directory. moced to correct directory. 2006-06-24 04:38 Scott Logsdon * [r2496] templates/Original/images/buttons/french/images: removed french language files from wrong directory. 2006-06-24 10:21 avinash * [r2501] includes/classes/calendar.php, includes/classes/page_cache.php, includes/classes/sessions.php, includes/filenames.php, includes/functions/articles.php, includes/functions/banner.php, includes/functions/database.php, includes/functions/general.php, includes/functions/html_output.php, includes/javascript/checkout_payment_address.js.php, includes/javascript/checkout_shipping_address.js.php, includes/languages/english.php, includes/languages/english/cvs_help.php, includes/languages/english/mainpage.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-24 11:46 avinash * [r2504] includes/javascript/checkout_payment_address.js.php, includes/javascript/checkout_shipping_address.js.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-24 11:50 avinash * [r2505] includes/javascript/checkout_shipping_address.js.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-24 11:58 avinash * [r2506] includes/javascript/checkout_payment_address.js.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-06-24 16:21 Scott Logsdon * [r2509] templates/content/product_info.tpl.php: updated catalog/templates/content/product_info.php so that sub-products are in their own table as on the demo site. 2006-06-24 21:21 Scott Logsdon * [r2512] admin/includes/functions/general.php, includes/functions/general.php: [T46973] - Errors in Tax Calculations - fixed commit to SVN files affected: catalog/includes/functions/general.php catalog/admin/includes/functions/general.php 2006-06-25 02:49 Scott Logsdon * [r2516] admin/includes/languages/english.php, admin/includes/modules/account_details.php: [T47388] - repaired to make State / Country selectable in error stage - catalog/admin/includes/modules/account_details.php 2006-06-25 04:27 Scott Logsdon * [r2520] index.php, pw.php, validate_new.php: [# 518] - manufacturer filter returns SQL error. ************************************** CHANGE ALL 3 files: EDIT catalog/index.php EDIT catalog/validate_new.php EDIT catalog/pw.php ************************************** FIND: from " . TABLE_PRODUCTS . " p, left join " . TABLE_SPECIALS_RETAIL_PRICES . " s using(products_id), WITH: from (" . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS_RETAIL_PRICES . " s using(products_id)), 2006-06-25 05:01 Scott Logsdon * [r2529] admin/event_drop_dns.php: missing define in catalog/event_drop_dns.php FIND: TEXT_CHOOSE REPLACE with: TEXT_CHOOSE_PRODUCT 2006-06-25 13:55 Scott Logsdon * [r2535] templates/content/wishlist.tpl.php: hard coded wishlist to one(1) column - due to not being able to add additional SQL in 6.2 2006-06-25 14:13 Scott Logsdon * [r2538] admin/includes/functions/general.php, includes/functions/general.php: revert commit - tax rate calculation is correct - customer setup was wrong. 2006-06-25 14:58 Scott Logsdon * [r2543] index.php, pw.php, validate_new.php: corrections to SQL code 2006-06-25 21:58 Scott Logsdon * [r2546] templates/E-vector/boxes/wishlist.php, templates/Helius/boxes/wishlist.php, templates/Original/boxes/wishlist.php, templates/Pixame_v1/boxes/wishlist.php, templates/default/boxes/wishlist.php: updated wishlist infoBox with updated wishlist query code. 2006-06-25 22:49 Scott Logsdon * [r2551] includes/languages/english/wishlist_help.php: updated wishlist faq to match wishlist functionality. catalog/includes/languages/english/wishlist_help.php 2006-06-26 03:54 Scott Logsdon * [r2554] admin/includes/functions/general.php, includes/functions/general.php: fixed error in previous commit 2006-06-28 16:33 Tom O'Neill * [r2583] admin/includes/languages/english.php, admin/includes/languages/german.php, admin/includes/languages/german/abandoned_orders.php, admin/includes/languages/german/admin_account.php, admin/includes/languages/german/admin_members.php, admin/includes/languages/german/affiliate_affiliates.php, admin/includes/languages/german/affiliate_banner_statistics.php, admin/includes/languages/german/affiliate_banners.php, admin/includes/languages/german/affiliate_news.php, admin/includes/languages/german/affiliate_newsletters.php, admin/includes/languages/german/affiliate_statistics.php, admin/includes/languages/german/algo_fraud_screener.php, admin/includes/languages/german/article_reviews.php, admin/includes/languages/german/article_search.php, admin/includes/languages/german/articles.php, admin/includes/languages/german/articles_config.php, admin/includes/languages/german/articles_xsell.php, admin/includes/languages/german/authors.php, admin/includes/languages/german/backup_mysql.php, admin/includes/languages/german/banner_manager.php, admin/includes/languages/german/banner_statistics.php, admin/includes/languages/german/c_orders.php, admin/includes/languages/german/cache.php, admin/includes/languages/german/categories.php, admin/includes/languages/german/coupon_admin.php, admin/includes/languages/german/coupon_restrict.php, admin/includes/languages/german/create_account.php, admin/includes/languages/german/create_account_process.php, admin/includes/languages/german/create_order.php, admin/includes/languages/german/create_order_admin.php, admin/includes/languages/german/create_order_payment.php, admin/includes/languages/german/create_order_process.php, admin/includes/languages/german/create_order_shipping.php, admin/includes/languages/german/crypt.php, admin/includes/languages/german/crypt_convert.php, admin/includes/languages/german/crypt_convert_1.php, admin/includes/languages/german/crypt_purge.php, admin/includes/languages/german/crypt_update.php, admin/includes/languages/german/currencies.php, admin/includes/languages/german/customers.php, admin/includes/languages/german/customers_groups.php, admin/includes/languages/german/data.php, admin/includes/languages/german/data_admin.php, admin/includes/languages/german/define_mainpage.php, admin/includes/languages/german/document.php, admin/includes/languages/german/easypopulate.php, admin/includes/languages/german/edit_key.php, admin/includes/languages/german/edit_orders.php, admin/includes/languages/german/edit_textdata.php, admin/includes/languages/german/email_subjects.php, admin/includes/languages/german/events_calendar.php, admin/includes/languages/german/events_manager.php, admin/includes/languages/german/faq.php, admin/includes/languages/german/faq_categories.php, admin/includes/languages/german/featured.php, admin/includes/languages/german/file_manager.php, admin/includes/languages/german/forbiden.php, admin/includes/languages/german/froogle.php, admin/includes/languages/german/froogle_pre.php, admin/includes/languages/german/geo_zones.php, admin/includes/languages/german/gv_mail.php, admin/includes/languages/german/gv_sent.php, admin/includes/languages/german/header_tags_controller.php, admin/includes/languages/german/header_tags_popup_help.php, admin/includes/languages/german/help/data_help.php, admin/includes/languages/german/help/doc/index.html, admin/includes/languages/german/help/doc/index2.html, admin/includes/languages/german/help/doc/index3.html, admin/includes/languages/german/help/doc/index4.html, admin/includes/languages/german/help/doc/index5.html, admin/includes/languages/german/help/doc/none.txt, admin/includes/languages/german/help/doc_admin.php, admin/includes/languages/german/help/doc_cat.php, admin/includes/languages/german/help/doc_intro.php, admin/includes/languages/german/help/doc_misc.php, admin/includes/languages/german/help/edit_textdata_help.php, admin/includes/languages/german/index.php, admin/includes/languages/german/index_new.php, admin/includes/languages/german/infobox_admin.php, admin/includes/languages/german/infobox_configuration.php, admin/includes/languages/german/information.php, admin/includes/languages/german/invoice.php, admin/includes/languages/german/languages.php, admin/includes/languages/german/links.php, admin/includes/languages/german/links_contact.php, admin/includes/languages/german/login.php, admin/includes/languages/german/mail.php, admin/includes/languages/german/manufacturers.php, admin/includes/languages/german/members.php, admin/includes/languages/german/modules.php, admin/includes/languages/german/modules/newsletters/affiliate_newsletter.php, admin/includes/languages/german/modules/newsletters/product_notification.php, admin/includes/languages/german/navmenu.php, admin/includes/languages/german/newsletters.php, admin/includes/languages/german/orderlist.php, admin/includes/languages/german/orders.php, admin/includes/languages/german/orders_status.php, admin/includes/languages/german/packingslip.php, admin/includes/languages/german/pages.php, admin/includes/languages/german/pages_categories.php, admin/includes/languages/german/popup_ep_help.php, admin/includes/languages/german/popup_infobox_help.php, admin/includes/languages/german/product_extra_fields.php, admin/includes/languages/german/product_list_admin.php, admin/includes/languages/german/products_attributes.php, admin/includes/languages/german/products_expected.php, admin/includes/languages/german/products_multi.php, admin/includes/languages/german/removezip.php, admin/includes/languages/german/reviews.php, admin/includes/languages/german/salemaker.php, admin/includes/languages/german/salemaker_info.php, admin/includes/languages/german/server_info.php, admin/includes/languages/german/shopbyprice.php, admin/includes/languages/german/specials.php, admin/includes/languages/german/specialsbycategory.php, admin/includes/languages/german/stats_articles_viewed.php, admin/includes/languages/german/stats_customers_orders.php, admin/includes/languages/german/stats_daily_products_sales_report.php, admin/includes/languages/german/stats_monthly_sales.php, admin/includes/languages/german/stats_not_valid_users.php, admin/includes/languages/german/stats_products_notifications.php, admin/includes/languages/german/stats_products_purchased.php, admin/includes/languages/german/stats_products_viewed.php, admin/includes/languages/german/stats_sales_report2.php, admin/includes/languages/german/tax_rates.php, admin/includes/languages/german/template_admin.php, admin/includes/languages/german/template_configuration.php, admin/includes/languages/german/validate_new.php, admin/includes/languages/german/whos_online.php, admin/includes/languages/german/xsell_products.php, admin/includes/languages/german/zones.php: [T259] Language Compliance: Added German translations from Portalmaster for Standard Admin. 2006-06-28 16:40 Tom O'Neill * [r2584] includes/languages/german.php, includes/languages/german/affiliate_details_ok.php, includes/languages/german/affiliate_payment.php, includes/languages/german/affiliate_signup.php, includes/languages/german/all_prodcats.php, includes/languages/german/create_account_success.php, includes/languages/german/index.php, includes/languages/german/links.php, includes/languages/german/loginbox.php, includes/languages/german/modules/payment/authorizenet.php, includes/languages/german/modules/shipping_estimator.php, includes/languages/german/product_info.php, includes/languages/german/whos_onlinebox.php, includes/languages/german/wishlist.php: [T259] Language Compliance: Added German translations from Portalmaster for Standard Catalog. 2006-06-29 18:32 Kiran Chitragar * [r2597] branches/loaded62b2b/includes/modules/example.html, branches/loaded62b2b/templates/E-vector_B2B/mainpage_modules/example.html, branches/loaded62b2b/templates/Helius_B2B/mainpage_modules/example.html, branches/loaded62b2b/templates/Original_B2B/mainpage_modules/example.html, branches/loaded62b2b/templates/Pixame_v1_B2B/mainpage_modules/example.html, branches/loaded62b2b/templates/default/mainpage_modules/example.html, branches/loaded62pro/includes/modules/example.html, includes/modules/example.html, templates/E-vector/mainpage_modules/example.html, templates/Helius/mainpage_modules/example.html, templates/Original/mainpage_modules/example.html, templates/Pixame_v1/mainpage_modules/example.html, templates/default/mainpage_modules/example.html: Layout was damaging due to extra cell elements. Removed them 2006-07-01 16:49 Charles Williams, Jr. * [r2611] branches/loaded62b2b/admin/includes/version.php, branches/loaded62b2b/includes/version.php, branches/loaded62b2b_wl/admin/includes/version.php, branches/loaded62b2b_wl/includes/version.php, branches/loaded62pro/admin/includes/version.php, branches/loaded62pro/includes/version.php, branches/loaded62pro_wl/admin/includes/version.php, branches/loaded62pro_wl/includes/version.php, admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _wl/includes/version.php: Internal Cleanup - set the version files to 6.2.05 patch level 2006-07-03 00:40 Scott Logsdon * [r2630] includes/languages/english/contact_us.php: corrected spelling errors in includes/languages/english/contact_us.php 2006-07-03 11:22 avinash * [r2631] includes/functions/affiliate_functions.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-03 11:27 avinash * [r2632] includes/functions/affiliate_functions.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-03 12:51 avinash * [r2633] advanced_search_result.php, affiliate_banners_build.php, affiliate_banners_build_cat.php, affiliate_banners_category.php, affiliate_banners_product.php, affiliate_banners_text.php, affiliate_show_banner.php, check_lang.php, checkout_shipping.php, login.php, paypal_notify.php, popup_coupon_help.php, shipping_estimator_popup.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-03 13:11 avinash * [r2634] includes/languages/english.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-03 13:13 avinash * [r2635] includes/languages/english/affiliate_banners_build.php, includes/languages/english/affiliate_banners_build_cat.php, includes/languages/english/affiliate_banners_category.php, includes/languages/english/affiliate_banners_product.php, includes/languages/english/affiliate_banners_text.php, includes/languages/english/checkout_shipping.php, includes/languages/english/login.php, includes/languages/english/popup_coupon_help.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-05 22:00 Scott Logsdon * [r2652] templates/content/product_reviews_info.tpl.php: commit from 6-26 was somehow overwritten. commit corrected files again. 2006-07-06 18:23 Michael Day * [r2657] branches/loaded62b2b/admin/edit_orders.php, branches/loaded62pro/admin/edit_orders.php, admin/edit_orders.php: bugfix - 417 - order editor, enable modify coupon discount value 2006-07-07 15:18 avinash * [r2661] admin/includes/account_check.js.php, admin/includes/attributes_display.php, admin/includes/classes/phplot.php, admin/includes/classes/sessions.php, admin/includes/footer.php, admin/includes/functions/attributes_sorter_added_functions.php, admin/includes/functions/crypt.php, admin/includes/functions/database.php, admin/includes/functions/header_tags.php, admin/includes/functions/html_output.php, admin/includes/header/header.php, admin/includes/languages/english.php, admin/includes/languages/english/abandoned_orders.php, admin/includes/languages/english/admin_account.php, admin/includes/languages/english/algo_fraud_screener.php, admin/includes/languages/english/articles.php, admin/includes/languages/english/articles_xsell.php, admin/includes/languages/english/backup.php, admin/includes/languages/english/backup_mysql.php, admin/includes/languages/english/banner_manager.php, admin/includes/languages/english/c_orders.php, admin/includes/languages/english/categories.php, admin/includes/languages/english/coupon_admin.php, admin/includes/languages/english/create_order.php, admin/includes/languages/english/customers.php, admin/includes/languages/english/data.php, admin/includes/languages/english/edit_key.php, admin/includes/languages/english/edit_textdata.php, admin/includes/languages/english/events_manager.php, admin/includes/languages/english/froogle_pre.php, admin/includes/languages/english/header_tags_controller.php, admin/includes/languages/english/help/edit_key_help.php, admin/includes/languages/english/help/edit_textdata_help.php, admin/includes/languages/english/infobox_configuration.php, admin/includes/languages/english/links.php, admin/includes/languages/english/logoff.php, admin/includes/languages/english/orders.php, admin/includes/languages/english/products_attributes.php, admin/includes/languages/english/template_configuration.php, admin/includes/languages/english/whos_online.php, admin/includes/modules/afs_v1.0/FraudScreenClient.php, admin/includes/modules/afs_v1.0/algo_fraud_screener.php, admin/includes/modules/afs_v1.0/map.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-07 17:44 Charles Williams, Jr. * [r2662] branches/loaded62b2b/admin/gv_mail.php, branches/loaded62b2b/includes/application_top.php, branches/loaded62b2b/includes/functions/html_output.php, branches/loaded62pro/admin/gv_mail.php, branches/loaded62pro/includes/application_top.php, branches/loaded62pro/includes/functions/html_output.php, admin/gv_mail.php, includes/application_top.php, includes/functions/html_output.php: Bug#576 - remove all the partial search engine code. 2006-07-07 18:04 Charles Williams, Jr. * [r2664] branches/loaded62b2b/includes/functions/html_output.php, branches/loaded62pro/includes/functions/html_output.php, includes/functions/html_output.php: Internal Cleanup - when the & was changed to & the length of the string to match was not change to match. This corrects the string length. 2006-07-08 04:46 avinash * [r2667] admin/abandoned_orders.php, admin/articles.php, admin/articles_xsell.php, admin/authnet_help.php, admin/backup.php, admin/backup_mysql.php, admin/banner_manager.php, admin/categories.php, admin/check_lang.php, admin/coupon_admin.php, admin/create_order.php, admin/customers.php, admin/data.php, admin/data_help.php, admin/header_tags_controller.php, admin/header_tags_english.php, admin/header_tags_fill_tags.php, admin/index.php, admin/infobox_configuration.php, admin/install-explain.php, admin/links.php, admin/listcategories.php, admin/listproducts.php, admin/logoff.php, admin/orders.php, admin/password_forgotten.php, admin/products_attributes.php, admin/quick_attributes_popup.php, admin/quick_products_popup.php, admin/quickcom_help.php, admin/results.inc.php, admin/stats_explain_queries.php, admin/template_configuration.php, admin/treeview.php, admin/validproducts.php, admin/whos_online.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-08 04:50 avinash * [r2668] admin/edit_key.php, admin/edit_key_help.php, admin/edit_textdata.php, admin/edit_textdata_help.php, admin/events_manager.php, admin/feature_not_present.php, admin/froogle_pre.php, admin/froogle_pre1.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-08 05:28 avinash * [r2669] admin/edit_orders.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-08 05:30 avinash * [r2670] admin/includes/languages/english/edit_orders.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-08 07:28 avinash * [r2671] admin/includes/javascript/tiny_mce/plugins/filemanager/InsertFile/files.php, admin/includes/javascript/tiny_mce/plugins/filemanager/InsertFile/insert_file.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-08 07:29 avinash * [r2672] admin/includes/javascript/tiny_mce/plugins/ibrowser/ibrowser.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-08 07:31 avinash * [r2673] admin/includes/javascript/tiny_mce/plugins/preview/preview.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-08 12:31 Charles Williams, Jr. * [r2675] branches/loaded62b2b/includes/functions/html_output.php, branches/loaded62pro/includes/functions/html_output.php, includes/functions/html_output.php: Internal Cleanup - last modification did not completely solve the issue. The tep_get_all_get_params will leave a & at the end of the query string in preparation for additional query options. If none are added, the extra & must be removed. Routine modified to do so. 2006-07-09 16:06 Scott Logsdon * [r2676] admin/includes/languages/french.php: french language file causing blank screen in Admin FIND: define('BOX_HEADING_ARTICLES', 'Directeur D'Article'); CHANGE to: define('BOX_HEADING_ARTICLES', 'Directeur D\'Article'); 2006-07-10 17:03 Michael Day * [r2680] branches/loaded62b2b/affiliate_sales.php, branches/loaded62pro/affiliate_sales.php, affiliate_sales.php: BUG Fix 539 2006-07-10 18:33 Michael Day * [r2681] branches/loaded62b2b/admin/affiliate_clicks.php, branches/loaded62b2b/affiliate_clicks.php, branches/loaded62pro/admin/affiliate_clicks.php, branches/loaded62pro/affiliate_clicks.php, admin/affiliate_clicks.php, affiliate_clicks.php: Bug Fix 540/541 2006-07-10 19:30 Charles Williams, Jr. * [r2682] branches/loaded62b2b/create_account.php, branches/loaded62pro/create_account.php, create_account.php: Internal Correction - The process flag was removed in error. It is used by the state routine to control how it is processed. 2006-07-12 00:13 Scott Logsdon * [r2683] admin/login.php: added code for cPanel installer to convert password to CRE hash. 2006-07-12 03:49 Scott Logsdon * [r2689] admin/banner_manager.php: - [#565] repaired error when deleting pre-included banners - admin/banner_manager.php FIND (around line 169): tep_redirect(tep_href_link('search', FILENAME_BANNER_MANAGER, 'page=' . $HTTP_GET_VARS['page'])); REPLACE with: tep_redirect(tep_href_link(FILENAME_BANNER_MANAGER, 'page=' . $HTTP_GET_VARS['page'])); 2006-07-12 14:49 Tom O'Neill * [r2691] templates/content/index_nested.tpl.php: [#577] What's New box appears in parent category when it should not. I added an if condition that check all of the INCLUDE_MODULE_XXX to see if new_products.php main page is active. If it is then it will show if not the an empty cell will apear. 2006-07-12 15:11 Tom O'Neill * [r2693] admin/header_tags_controller.php: [#563] Hedaer Tag => WARNING: MISSING ARGUMENT message_stack.php on line 129 there was several instances where the location variable was missing. these have been added. This includes the message output. the proper format now is message location, messages, type of message. 2006-07-12 15:15 Tom O'Neill * [r2694] admin/header_tags_controller.php: [#563] Header Tag => While updating file I found numerous short tags. corrected them. 2006-07-12 15:24 Tom O'Neill * [r2696] admin/includes/languages/espanol/header_tags_controller.php, admin/includes/languages/french/header_tags_controller.php, admin/includes/languages/german/header_tags_controller.php: [#563] Header Tag => While updating I noticed the the new language define were not added to the other 3 languages files. 2006-07-12 18:33 Michael Day * [r2699] branches/loaded62b2b/admin/c_orders.php, branches/loaded62pro/admin/c_orders.php, admin/c_orders.php: [#489] Customers/Orders, Create Order - sub totals do not re-calculate (CRE bug) 2006-07-12 22:39 Charles Williams, Jr. * [r2704] branches/loaded62b2b/templates/E-vector_B2B/boxes/downloads.php, branches/loaded62b2b/templates/Helius_B2B/boxes/downloads.php, branches/loaded62b2b/templates/Original_B2B/boxes/downloads.php, branches/loaded62b2b/templates/Pixame_v1_B2B/boxes/downloads.php, branches/loaded62b2b/templates/default/boxes/downloads.php, branches/loaded62pro/templates/E-vector/boxes/downloads.php, branches/loaded62pro/templates/Helius/boxes/downloads.php, branches/loaded62pro/templates/Original/boxes/downloads.php, branches/loaded62pro/templates/Pixame_v1/boxes/downloads.php, branches/loaded62pro/templates/default/boxes/downloads.php, templates/E-vector/boxes/downloads.php, templates/Helius/boxes/downloads.php, templates/Original/boxes/downloads.php, templates/Pixame_v1/boxes/downloads.php, templates/default/boxes/downloads.php: Internal Performance Enhancement - the download info box would do a full table scan looking for a null customer id. Since you cannot have an order will a null customer id, the logic was changed to prevent the query. 2006-07-13 15:51 Scott Logsdon * [r2707] contact_us.php: contact us page sends an email to the customer and marks the mail as urgent regardless of whether you check the check boxes. fixed. 2006-07-15 17:52 Tom O'Neill * [r2710] admin/coupon_admin.php, admin/gv_mail.php, admin/includes/languages/english/coupon_admin.php, admin/includes/languages/espanol/coupon_admin.php, admin/includes/languages/french/coupon_admin.php, admin/includes/languages/german/coupon_admin.php: [#580] GV Email form does not obey configuration email settings to send mime emails. 1.the HTML_WYSIWYG_DISABLE_EMAIL setting no longer exists which was used to change from plain text to html test in the message. changed: HTML_WYSIWYG_DISABLE_EMAIL == 'Disable' to EMAIL_USE_HTML == 'false' 2. link in the email was code to be a text link only. change to a href link with a test label showing the target. 2006-07-21 11:39 avinash * [r2715] admin/includes/languages/english/images/buttons/sync.gif: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-21 11:42 avinash * [r2716] admin/includes/languages/english/languages.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-21 11:44 avinash * [r2717] admin/languages.inc.php, admin/languages.php, admin/sync.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-21 11:48 avinash * [r2718] admin/sync.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-21 11:52 avinash * [r2719] admin/languages.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-21 11:55 avinash * [r2720] admin/languages.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-21 11:57 avinash * [r2721] admin/languages.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-21 13:01 avinash * [r2722] admin/sync.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-21 19:09 Tom O'Neill * [r2725] admin/mail.php: [#627] Admin email subjects Per Skype chat with sal turned back to iput feild 2006-07-21 22:08 Tom O'Neill * [r2729] templates/content/contact_us.tpl.php: [#626] Subject email boxes in admin and catalog Per Skype chat with sal increase the size of the subject input box 2006-07-21 22:15 Tom O'Neill * [r2732] admin/mail.php: [#626] Subject email boxes in admin and catalog Per Skype chat with sal turned back to input field, previous commit have wrong input name 2006-07-22 14:32 Tom O'Neill * [r2736] includes/application_top_cre_setting.php, includes/filenames.php, includes/languages/english/tell_a_friend.php, includes/languages/english/tell_a_friend_article.php, includes/languages/espanol/tell_a_friend.php, includes/languages/espanol/tell_a_friend_article.php, includes/languages/french/tell_a_friend.php, includes/languages/french/tell_a_friend_article.php, includes/languages/german/tell_a_friend.php, includes/languages/german/tell_a_friend_article.php, tell_a_friend.php, templates/content/tell_a_friend.tpl.php: [#603] Tell a freind product/article 1. Changed from tep_mail to uses mime and email classes this allows this store owner to switch between text and html and html to be handled correctly. a mime type of text scripts all links from the message 2. Testing shows that when the store customer tries to add any html or script it is broken because the <> is stripped from the string. _/br_ _script_ _/script_ is what is sent in the email. 3. Wether to use text or html is currently set by the configuration>E-Mail Options USE MIME HTML When Sending Emails this must be set to true. New setting have been added for html vs text. false = text, true = HTML for all setting. This was added to the includes/application_top_cre_setting.php TELL_PRODUCT_EMAIL_USE_HTML TELL_ARTICLE_EMAIL_USE_HTML GV_EMAIL_USE_HTML 4. The catalog side forms have been changed to the the text about click a link has been changed to copy and paste to url box. So the text will switch automaticly between text anf html. 5.. Tell a friend about products and tell a friend about articles was split into two separate forms. This was done because of a conflict in variable names with the tell a friend side box. 2006-07-23 14:29 Tom O'Neill * [r2739] includes/application_top_cre_setting.php, includes/languages/english/wishlist_email.php, includes/languages/espanol/wishlist_email.php, includes/languages/french/wishlist_email.php, includes/languages/german/wishlist_email.php, templates/content/wishlist.tpl.php, templates/content/wishlist_email.tpl.php, wishlist.php, wishlist_email.php: [#252] Send wishlist to a friend issue 1. Changed from tep_mail to uses mime and email classes this allows this store owner to switch between text and html and html to be handled correctly. a mime type of text strips all links from the message 2. The message and product links were separated so the message can be filtered by tep_prep_input. Testing shows that when the store customer tries to add any html or script it is broken because the <> is stripped from the string. _/br_ _script_ _/script_ is what is sent in the email. 3. Wether to use text or html is currently set by the configuration>E-Mail Options html vs text. false = text, true = HTML for all setting. This was added to the includes/application_top_cre_setting.php WISH_EMAIL_USE_HTML 4. The catalog side forms have been changed so the text about click a link has been changed to copy and paste to URL box. So the text will switch automatically between text and html. 5. Verify security code was added to limit the abuse of send a wish list. also the message box no longer contains the html for the products. This was done so the person sending the wish email could not change the html in the email. the products in the wish list are listed in a separate html box on the send form. 2006-07-23 17:38 Tom O'Neill * [r2744] admin/links.php: [#546] Widen image url entry box in add/edit links input boxes widened so all of the typical input will be visiable 2006-07-23 18:26 Tom O'Neill * [r2746] templates/E-vector/boxes/product_notifications.php, templates/Helius/boxes/product_notifications.php, templates/Original/boxes/product_notifications.php, templates/Pixame_v1/boxes/product_notifications.php, templates/default/boxes/product_notifications.php: [#606] 'Product not Found' when selecting product notifications. The problem is the use of post and get in the differnt inputs in the catalog. when ever possible post should be used. if not when interaction between to for the variable contents will be lost the following code can be used to accoutn for both post and get if (isset($HTTP_POST_VARS['products_id']) && tep_not_null($HTTP_POST_VARS['products_id'])) { $products_id = tep_db_prepare_input($HTTP_POST_VARS['products_id']); } elseif (isset($HTTP_GET_VARS['products_id']) && tep_not_null($HTTP_GET_VARS['products_id'])) { $products_id = tep_db_prepare_input($HTTP_GET_VARS['products_id']); } if ( (isset($HTTP_GET_VARS['products_id'])) || (isset($HTTP_POST_VARS['products_id'])) ) { 2006-07-23 18:27 Tom O'Neill * [r2747] templates/content/tell_a_friend_article.tpl.php: Missed 1 file for tell a friend updates 2006-07-23 19:06 Tom O'Neill * [r2751] includes/classes/cc_validation.php, includes/modules/payment/cc_uk.php: [#572] AMEX CCV problem in the cc_uk modules there is several different conditions that the output depends on, not all of them had the entry for the popup present. This has been corrected. In the cc_validation the Amex can be identified as Amex or American Express, in the card type sent to it. But the ccv section only was initiated if it was Amex. It now looks at Amex and American Express 2006-07-24 00:47 Tom O'Neill * [r2754] admin/stats_wishlist.php: [#597] Customer Wishlist not showing products in admin. page count now correct, item count now correct, Product information now showing 2006-07-24 03:05 Tom O'Neill * [r2757] admin/includes/languages/english.php, admin/includes/languages/english/images/buttons/button_edit_lang_define.gif, admin/includes/languages/espanol.php, admin/includes/languages/espanol/images/buttons/button_edit_lang_define.gif, admin/includes/languages/french.php, admin/includes/languages/french/images/buttons/button_edit_lang_define.gif, admin/includes/languages/german.php, admin/includes/languages/german/images/buttons/button_edit_lang_define.gif, admin/languages.php, tell_a_friend.php: [#535] Admin Languages Detail button 2006-07-24 03:23 Scott Logsdon * [r2758] checkout_process.php, checkout_success.php, images/shipwire_banner.gif, includes/classes/checkout_success.php, includes/languages/english/modules/checkout_success/notifications.php, includes/languages/english/modules/checkout_success/shipwire.php, includes/languages/espanol/modules/checkout_success/notifications.php, includes/languages/espanol/modules/checkout_success/shipwire.php, includes/languages/french/modules/checkout_success/notifications.php, includes/languages/french/modules/checkout_success/shipwire.php, includes/languages/german/modules/checkout_success/notifications.php, includes/languages/german/modules/checkout_success/shipwire.php, includes/modules/checkout_success/notifications.php, includes/modules/checkout_success/shipwire.php, templates/content/checkout_success.tpl.php: new checkout_success container with product notificaitons and shipwire modules. 2006-07-25 09:35 avinash * [r2769] admin/languages.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-25 14:28 Tom O'Neill * [r2770] admin/includes/languages/english/create_account_success.php: Contetns were from the espanol file not in english change to english 2006-07-25 16:07 avinash * [r2775] admin/sync.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-25 16:12 Charles Williams, Jr. * [r2776] branches/loaded62b2b/printorder.php, branches/loaded62pro/printorder.php, printorder.php: Issue #601 - corrected the logic of checking for a missing variable orphaned by a previous change. Applied the new logic to all branches. 2006-07-25 17:26 avinash * [r2783] admin/languages.php, admin/sync.php: Issue: CRE Loaded issue item no. #319 Issue Summary: Non-multilingual issues have been allowed into a number of 6.2 files 2006-07-26 14:47 Charles Williams, Jr. * [r2786] branches/loaded62b2b/admin/includes/version.php, branches/loaded62b2b/includes/version.php, branches/loaded62b2b_wl/admin/includes/version.php, branches/loaded62b2b_wl/includes/version.php, branches/loaded62pro/admin/includes/version.php, branches/loaded62pro/includes/version.php, branches/loaded62pro_wl/admin/includes/version.php, branches/loaded62pro_wl/includes/version.php, admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _wl/includes/version.php: Internal Setup - changes the version to 06 RC01 for the initial 06 patch release 2006-07-27 11:54 avinash * [r2793] admin/languages.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-27 12:16 avinash * [r2794] admin/languages.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-27 12:38 avinash * [r2799] admin/languages.php: Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement 2006-07-28 15:16 Charles Williams, Jr. * [r2804] branches/loaded62b2b/admin/includes/version.php, branches/loaded62b2b/includes/version.php, branches/loaded62b2b_wl/admin/includes/version.php, branches/loaded62b2b_wl/includes/version.php, branches/loaded62pro/admin/includes/version.php, branches/loaded62pro/includes/version.php, branches/loaded62pro_wl/admin/includes/version.php, branches/loaded62pro_wl/includes/version.php, admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _wl/includes/version.php: Internal Cleanup - reset the version to 06 RC02 for additional package build and testing 2006-07-28 16:26 avinash * [r2805] admin/includes/functions/rss2html.php: Remove

tag before the tag before the * [r2811] branches/loaded62b2b/templates/content/create_account.tpl.php, branches/loaded62pro/templates/content/create_account.tpl.php, templates/content/create_account.tpl.php: Internal Enhancement - changed the default for the newsletter on the create account page from unchecked to checked. Designed changed requested by Salvatore. 2006-07-29 19:38 Scott Logsdon * [r2819] checkout_process.php, includes/languages/english/modules/checkout_success/shipwire.php, includes/languages/espanol/modules/checkout_success/shipwire.php, includes/languages/french/modules/checkout_success/shipwire.php, includes/languages/german/modules/checkout_success/shipwire.php, includes/modules/checkout_success/shipwire.php: updates to shipwire module 2006-07-29 20:50 Charles Williams, Jr. * [r2821] branches/loaded62b2b/admin/includes/version.php, branches/loaded62b2b/includes/version.php, branches/loaded62b2b_wl/admin/includes/version.php, branches/loaded62b2b_wl/includes/version.php, branches/loaded62pro/admin/includes/version.php, branches/loaded62pro/includes/version.php, branches/loaded62pro_wl/admin/includes/version.php, branches/loaded62pro_wl/includes/version.php, admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _wl/includes/version.php: Internal Cleanup - changed the version number to 06 RC03 because of the important changes being picked up for testing 2006-07-30 22:17 Scott Logsdon * [r2828] includes/modules/checkout_success/shipwire.php: updated logic to append orders->comments instead of overwriting. this is needed when multiple modules run on checkout_success and update orders->comments. 2006-07-31 00:44 Tom O'Neill * [r2829] admin/includes/warnings.php: [#615] Problem with the permissions/files exsists message in the catalog and admin after intial install item 1 and 2 were moved to the admin, since as a store operator this is where I always go and seldom look at the catalog unless there is a problme. item 3 when I moved the code to the admin I negleted to look close as the detection code. it was looking at /install/ but because of the moved code it would have had to look at /admin/ install/ the fix is to change admin/includes/warnings.php line 20 change '/install' to '/../install' also there a another bug in this file since the current upgrade code has been used. On line 27 UPGRADE should have been UPGRADES. 2006-07-31 01:12 Tom O'Neill * [r2832] includes/languages/english.php, includes/languages/english/mainpage.php: [#319] Non Multilingual issues have been allowed into a number of 6.2 files. Mainpage.php is one html page that can be display and customized by the store owner I should not have any further defines revert back to the old code 2006-07-31 03:28 Scott Logsdon * [r2833] admin/includes/languages/english.php: minor change to admin/includes/languages/english.php. removed extra space from 2 variables where it was not needed. this was already updated in Pro and B2B. 2006-07-31 04:17 Scott Logsdon * [r2837] includes/languages/english/modules/shipping/percent.php, includes/languages/espanol/modules/shipping/percent.php, includes/languages/french/modules/shipping/percent.php, includes/languages/german/modules/shipping/percent.php, includes/modules/shipping/percent.php: edited percent shipping module so that it shows correct title in admin but still shows "Shipping" title in storefront. 2006-07-31 04:57 Scott Logsdon * [r2838] admin/feature_not_present.php: updated feature_not_present page again - previous changes from commit 2414 were overwritten 2006-07-31 05:16 Tom O'Neill * [r2840] admin/includes/languages/english.php, admin/includes/languages/espanol.php, admin/includes/languages/french.php, admin/includes/languages/german.php, admin/includes/warnings.php: [#638] Missing warning in storefront after install Only the admin configure.php was checked Now the catalog is also. 2006-07-31 06:17 Michael Day * [r2843] branches/loaded62b2b/admin/edit_orders.php, branches/loaded62b2b/admin/orders.php, branches/loaded62pro/admin/edit_orders.php, branches/loaded62pro/admin/orders.php, admin/edit_orders.php, admin/orders.php: Fix display order ccv number bug 2006-07-31 12:46 Charles Williams, Jr. * [r2844] branches/loaded62b2b/admin/languages.inc.php, branches/loaded62b2b/admin/sync.php, branches/loaded62pro/admin/languages.inc.php, branches/loaded62pro/admin/sync.php, admin/languages.inc.php, admin/sync.php: Internal Cleanup - remove files that should not have been added to the svn. The code from these files was added into the admin languages.php file. 2006-07-31 12:57 Charles Williams, Jr. * [r2845] branches/loaded62b2b/admin/includes/version.php, branches/loaded62b2b/includes/version.php, branches/loaded62b2b_wl/admin/includes/version.php, branches/loaded62b2b_wl/includes/version.php, branches/loaded62pro/admin/includes/version.php, branches/loaded62pro/includes/version.php, branches/loaded62pro_wl/admin/includes/version.php, branches/loaded62pro_wl/includes/version.php, admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _wl/includes/version.php: Internal Cleanup - changed the version to 06 RC04 for package rebuild. Picking up new changes needed for 06 patch. 2006-07-31 22:41 Scott Logsdon * [r2849] admin/coupon_admin.php: commit changes to GV again - commit 2710 was lost somehow. 2006-08-01 01:21 Scott Logsdon * [r2854] includes/languages/english.php, includes/modules/order_total/ot_coupon.php, templates/content/checkout_payment.tpl.php: [#258] repaired session problem with ot_coupon.php module and fixed related coupon errors. 2006-08-01 13:35 Charles Williams, Jr. * [r2856] branches/loaded62b2b/admin/includes/version.php, branches/loaded62b2b/includes/version.php, branches/loaded62b2b_wl/admin/includes/version.php, branches/loaded62pro/admin/includes/version.php, branches/loaded62pro/includes/version.php, branches/loaded62pro_wl/admin/includes/version.php, admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php: Internal Cleanup - changed the version to 06 RC05 for additional testing 2006-08-01 15:34 Tom O'Neill * [r2857] contact_us.php, includes/languages/english/checkout_success.php, includes/languages/english/create_account_success.php, includes/languages/english/links_submit_success.php, includes/languages/espanol/checkout_success.php, includes/languages/espanol/create_account_success.php, includes/languages/espanol/links_submit_success.php, includes/languages/french/checkout_success.php, includes/languages/french/create_account_success.php, includes/languages/french/links_submit_success.php, includes/languages/german/checkout_success.php, includes/languages/german/create_account_success.php, includes/languages/german/links_submit_success.php, templates/E-vector/boxes/information_table.php, templates/E-vector/header.php, templates/Helius/boxes/information_table.php, templates/Original/boxes/information_table.php, templates/Pixame_v1/boxes/information_table.php, templates/content/affiliate_contact.tpl.php, templates/content/contact_us.tpl.php, templates/default/boxes/information_table.php: [#646] Contact us form not opening in SSL Because the information that could be in the contact us form could be sensitive personal. All usages of this form should be through the ssl. Some links are already set to https some are not. Most url are set by tep_href_link(FILENAME_CONTACT_US, '', 'NONSSL') or tep_href_link(FILENAME_CONTACT_US) these we all changed to tep_href_link(FILENAME_CONTACT_US, '', 'SSL') where ever I could find it I used windows explorer search (simular to grep in linux) feature to find all instances of contact_us in all files. There is 21 places the contact us link needed to be change in the standard version. 2006-08-01 19:37 Scott Logsdon * [r2860] includes/languages/espanol/product_info.php: [#648] repaired syntax error in includes/languages/espanol/product_info.php