• 2006-06-06 18:11 Kiran Chitragar <wa4u>
  • [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. <ccwjr>
  • [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 <mday>
  • [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 <mday>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <a href></a> 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', '&nbsp; Convert CC Data'); define('BOX_CRYPT_PURGE', '&nbsp; Purge CC Data'); define('BOX_CRYPT_UPDATE', '&nbsp; 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) . '&nbsp;&nbsp;' . tep_admin_files_boxes(FILENAME_CRYPT_UPDATE, BOX_CRYPT_UPDATE, 'SSL') . //'&nbsp;&nbsp;' . tep_admin_files_boxes(FILENAME_CRYPT_CONVERT, BOX_CRYPT_CONVERT) '&nbsp;&nbsp;' . 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 <datazen>
  • [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 <datazen>
  • [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) . '&nbsp;&nbsp;' . ENTRY_CUSTOMERS_GROUP_RA_NO . '&nbsp;&nbsp;' . tep_draw_radio_field('customers_group_ra', '1', false, $cInfo->customers_group_ra) . '&nbsp;&nbsp;' . ENTRY_CUSTOMERS_GROUP_RA_YES;

    REPLACE with: echo tep_draw_radio_field('customers_group_ra', '0', true,$cInfo->customers_group_ra) . '&nbsp;&nbsp;' . ENTRY_CUSTOMERS_GROUP_RA_NO . '&nbsp;&nbsp;' . tep_draw_radio_field('customers_group_ra', '1', false, $cInfo->customers_group_ra) . '&nbsp;&nbsp;' . ENTRY_CUSTOMERS_GROUP_RA_YES;
  • 2006-06-10 16:46 Scott Logsdon <datazen>
  • [r2323] admin/c_orders.php update admin/c_orders.php (all versions) for Bug # B2B 488

    FIND: <!-- Begin Order Total Block --> <tr> <td align="right" colspan="6">

    CHANGE to:

    <!-- Begin Order Total Block --> <tr> <td align="right" colspan="7">
  • 2006-06-10 17:31 Scott Logsdon <datazen>
  • [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 <zip1>
  • [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 <zip1>
  • [r2359] templates/Original/images/logo.gif Change logo to new one
  • 2006-06-12 18:10 Tom O'Neill <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [r2377] includes/CRE_template_application_top.php Removed trailing slash from DIR_FS_TEMPLATE_BOXES contents
  • 2006-06-13 14:01 Tom O'Neill <zip1>
  • [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 <datazen>
  • [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):

    <?php if (!$HTTP_POST_VARS['coupon_startdate']) { $coupon_startdate = split("[-]", date('Y-m-d')); } else { $coupon_startdate = split("[-]", $HTTP_POST_VARS['coupon_startdate']); } if (!$HTTP_POST_VARS['coupon_finishdate']) { $coupon_finishdate = split("[-]", date('Y-m-d')); $coupon_finishdate[0] = $coupon_finishdate[0] + 1; } else { $coupon_finishdate = split("[-]", $HTTP_POST_VARS['coupon_finishdate']); } ?>

    REPLACE with:

    <?php if (!$coupon['coupon_start_date']) { $coupon_startdate = split("[-]", date('Y-m-d')); } else { $coupon_startdate = split("[-]", $coupon['coupon_start_date']); } if (!$coupon['coupon_expire_date']) { $coupon_finishdate = split("[-]", date('Y-m-d')); $coupon_finishdate[0] = $coupon_finishdate[0] + 1; } else { $coupon_finishdate = split("[-]", $coupon['coupon_expire_date']); } ?>
  • 2006-06-15 02:05 Scott Logsdon <datazen>
  • [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):

    <td align="left"><?php echo tep_image_submit('button_preview.gif',COUPON_BUTTON_P REVIEW); ?></td>

    <td align="left"><?php echo '&nbsp;&nbsp;<a href="' . tep_href_link('coupon_admin.php', ''); ?>"><?php echo tep_image_button('button_cancel.gif', IMAGE_CANCEL); ?></a>

    REPLACE with:

    <td align="left"><?php echo '&nbsp;&nbsp;<a href="' . tep_href_link('coupon_admin.php', ''); ?>"><?php echo tep_image_button('button_cancel.gif', IMAGE_CANCEL); ?></a> <td align="right"><?php echo

    tep_image_submit('button_preview.gif',IMAGE_PREVIEW); ?></td>
  • 2006-06-15 22:25 Scott Logsdon <datazen>
  • [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):

    <tr class="dataTableHeadingRow"> <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_NUMBER; ?></td> <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_ORDER_QUANTITY; ?></td> <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_PRODUCT_NAME; ?></td>

    <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_PRODUCT_MODEL; ?></td> <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_UNITPRICE; ?></td> <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_PRODUCT_QUANTITY; ?></td> <td class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_TOTAL_PURCHASED; ?>&nbsp;</td> </tr>

    <?php

    REPLACE with:

    <tr class="dataTableHeadingRow"> <?php $csv_accum .= ""; ?> <td class="dataTableHeadingContent"><?php echo TABLE_HEADING_NUMBER; ?></td> <td class="dataTableHeadingContent"><?php mirror_out(TABLE_HEADING_ORDER_QUANTITY); ?></td> <td class="dataTableHeadingContent"><?php mirror_out(TABLE_HEADING_PRODUCT_NAME); ?></td> <td

    class="dataTableHeadingContent"><?php mirror_out(TABLE_HEADING_PRODUCT_MODEL); ?></td> <td class="dataTableHeadingContent"><?php mirror_out(TABLE_HEADING_UNITPRICE); ?></td> <td class="dataTableHeadingContent"><?php mirror_out(TABLE_HEADING_PRODUCT_QUANTITY); ?></td> <td class="dataTableHeadingContent" align="right"><?php mirror_out(TABLE_HEADING_TOTAL_PURCHASED); ?>&nbsp;</td> </tr>

    <?php // new line for CSV $csv_accum .= "\n"; //

    FIND (around line 113):

    <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href='<?php echo tep_href_link(FILENAME_CUSTOMERS, 'search=' . $products['products_name'], 'NONSSL'); ?>'"> <td class="dataTableContent"><?php echo $rows; ?>.</td> <td class="dataTableContent"><?php echo $products['howmany_orders'] ?>.</td> <td class="dataTableContent"><?php echo $products['products_name'] ?>.</td> <td class="dataTableContent"><?php echo $products['products_model'] ?></td> <td class="dataTableContent"><?php echo $products['ticket_price'] ?>.</td> <td class="dataTableContent"><?php echo $products['howmany_tickets'] ?>.</td> <td class="dataTableContent" align="right"><?php echo $currencies->format($products['howmuch']); ?>&nbsp;</td> </tr> <?php } ?>

    REPLACE with:

    <tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href='<?php //echo tep_href_link(FILENAME_CUSTOMERS, 'search=' . $products['products_name'], 'NONSSL'); ?>'"> <td class="dataTableContent"><?php echo $rows; ?>.</td> <td class="dataTableContent"><?php mirror_out(number_format($products['howmany_orders'], 0)) ?>.</td> <td class="dataTableContent"><?php mirror_out($products['products_name']) ?>.</td> <td class="dataTableContent"><?php mirror_out($products['products_model']) ?></td> <td class="dataTableContent"><?php mirror_out(number_format($products['ticket_price'],2) ) ?>.</td> <td class="dataTableContent"><?php mirror_out(number_format($products['howmany_tickets'] ,0)) ?>.</td> <td class="dataTableContent" align="right"><?php mirror_out(number_format($products['howmuch'],2)); ?></td> </tr> <?php // new line for CSV $csv_accum .= "\n"; // } ?>

    FIND (around line 136):

    while ($products = tep_db_fetch_array($products_query)) { echo '<b>' . TABLE_DAILY_VALUE . round($products['dailyvalue'],2) . '</b>'; } ?> </tr>

    BENEATH it, ADD:

    <tr> <td class="smallText" colspan="4"><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method=post> <input type='hidden' name='csv' value='<?php echo $csv_accum; ?>'> <input type="hidden" name="saveas" value="daily_product_sales_report_<?php echo date('YmdHi'); ?>"> <input type="submit" value="<?php echo TEXT_BUTTON_REPORT_SAVE ;?>"></form> </td> </tr>

    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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <zip1>
  • [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 <datazen>
  • [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):

    <?php $state = sbs_get_zone_name($country, $zone_id); if ($is_read_only) { echo sbs_get_zone_name($account['entry_country_id'], $account['entry_zone_id']); } elseif ($error) { if ($entry_state_error) { if ($entry_state_has_zones) { $zones_array = array(); $zones_query = tep_db_query("select zone_name from " . TABLE_ZONES . " where zone_country_id = '" . tep_db_input($country) . "' order by zone_name"); while ($zones_values = tep_db_fetch_array($zones_query)) { $zones_array[] = array('id' => $zones_values['zone_name'], 'text' => $zones_values['zone_name']); } echo tep_draw_pull_down_menu('state', $zones_array) . '&nbsp;' . ENTRY_STATE_ERROR; } else { echo tep_draw_input_field('state') . '&nbsp;' . 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'])) . '&nbsp;' . ENTRY_STATE_TEXT; } ?>

    REPLACE with:

    <?php $state = sbs_get_zone_name($country, $zone_id); if ($is_read_only) { echo sbs_get_zone_name($account['entry_country_id'], $account['entry_zone_id']); } elseif ($error) { if ($entry_state_error) { if ($entry_state_has_zones) { $zones_array = array(); $zones_query = tep_db_query("select zone_name from " . TABLE_ZONES . " where zone_country_id = '" . tep_db_input($country) . "' order by zone_name"); while ($zones_values = tep_db_fetch_array($zones_query)) { $zones_array[] = array('id' => $zones_values['zone_name'], 'text' => $zones_values['zone_name']); } echo tep_draw_pull_down_menu('state', $zones_array) . '&nbsp;' . ENTRY_STATE_ERROR; } else { echo tep_draw_input_field('state') . '&nbsp;' . 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'])) . '&nbsp;' . ENTRY_STATE_TEXT; } ?>

    FIND (around line 351):

    <?php $account['entry_country_id'] = STORE_COUNTRY; if ($is_read_only) { echo tep_get_country_name($account['entry_country_id']); }

    elseif ($error) { if ($entry_country_error) {

    echo sbs_get_country_list('country') . '&nbsp;' . ENTRY_COUNTRY_ERROR; } else { echo tep_get_country_name($country) . tep_draw_hidden_field('country'); } } else { echo sbs_get_country_list('country', $account['entry_country_id']) . '&nbsp;' . ENTRY_COUNTRY_TEXT; } ?>

    REPLACE with:

    <?php $account['entry_country_id'] = STORE_COUNTRY; if ($is_read_only) { echo tep_get_country_name($account['entry_country_id']); }elseif ($error) { if ($entry_country_error) { echo sbs_get_country_list('country') . '&nbsp;' . ENTRY_COUNTRY_ERROR; } else { if ($error) { echo sbs_get_country_list('country'); }else{ echo tep_get_country_name($country) . tep_draw_hidden_field('country'); } } } else { echo sbs_get_country_list('country', $account['entry_country_id']) . '&nbsp;' . ENTRY_COUNTRY_TEXT; } ?>

    FIND (around line 401):

    <?php if ($is_read_only) { echo $account['customers_fax']; } elseif ($processed) { echo $fax . tep_draw_hidden_field('fax'); } else { echo tep_draw_input_field('fax', $account['customers_fax']) . '&nbsp;' . ENTRY_FAX_NUMBER_TEXT; } ?>

    REPLACE with:

    <?php if ($is_read_only) { echo $account['customers_fax']; } elseif (($processed) && (!$error)) { echo $fax . tep_draw_hidden_field('fax'); } else { echo tep_draw_input_field('fax', $account['customers_fax']) . '&nbsp;' . ENTRY_FAX_NUMBER_TEXT; } ?>
  • 2006-06-16 18:57 Michael Day <mday>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <wa4u>
  • [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 <wa4u>
  • [r2467] admin/categories.php Fixed bug no #490 from CREForge
  • 2006-06-22 14:03 Scott Logsdon <datazen>
  • [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 <wa4u>
  • [r2472] admin/includes/languages/english/images/buttons/button_return.gif Updated button CREForge bug #533
  • 2006-06-22 15:43 Scott Logsdon <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <wa4u>
  • [r2485] includes/modules/articles_xsell.php Updated for Helius type templates.
  • 2006-06-23 08:09 Kiran Chitragar <wa4u>
  • [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 <wa4u>
  • [r2491] admin/products_attributes.php Enhanced file missing and good file cell bg to highlight.
  • 2006-06-24 04:35 Scott Logsdon <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [r2543] index.php, pw.php, validate_new.php corrections to SQL code
  • 2006-06-25 21:58 Scott Logsdon <datazen>
  • [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 <datazen>
  • [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 <datazen>
  • [r2554] admin/includes/functions/general.php, includes/functions/general.php fixed error in previous commit
  • 2006-06-28 16:33 Tom O'Neill <zip1>
  • [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 <zip1>
  • [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 <wa4u>
  • [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. <ccwjr>
  • [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 <datazen>
  • [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 <datazen>
  • [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 <mday>
  • [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. <ccwjr>
  • [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. <ccwjr>
  • [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 &amp; 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. <ccwjr>
  • [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 &amp; at the end of the query string in preparation for additional query options. If none are added, the extra &amp; must be removed. Routine modified to do so.
  • 2006-07-09 16:06 Scott Logsdon <datazen>
  • [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 <mday>
  • [r2680] branches/loaded62b2b/affiliate_sales.php, branches/loaded62pro/affiliate_sales.php, affiliate_sales.php BUG Fix 539
  • 2006-07-10 18:33 Michael Day <mday>
  • [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. <ccwjr>
  • [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 <datazen>
  • [r2683] admin/login.php added code for cPanel installer to convert password to CRE hash.
  • 2006-07-12 03:49 Scott Logsdon <datazen>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <mday>
  • [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. <ccwjr>
  • [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 <datazen>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <zip1>
  • [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 <datazen>
  • [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 <zip1>
  • [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. <ccwjr>
  • [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. <ccwjr>
  • [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. <ccwjr>
  • [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 </p> tag before the <!DOCTYPE HTML
  • 2006-07-28 16:28 avinash
  • [r2806] admin/includes/header.php Remove </p> tag before the <!DOCTYPE HTML
  • 2006-07-29 02:55 Charles Williams, Jr. <ccwjr>
  • [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 <datazen>
  • [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. <ccwjr>
  • [