• 2006-06-06 18:10 Kiran Chitragar <wa4u>
  • [r2259] 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] admin/categories.php, branches/loaded62pro/admin/categories.php, branches/loaded62standard/admin/categories.php Bug#501 - bad code was allowed in the categories.php module. The old code has now been completely removed.
  • 2006-06-08 15:36 Tom O'Neill <zip1>
  • [r2268] admin/includes/languages/english/create_account.php, admin/includes/languages/english/customers.php, admin/includes/languages/english/edit_orders.php, admin/includes/languages/english/invoice.php Language update: English define fixes
  • 2006-06-08 15:38 Tom O'Neill <zip1>
  • [r2269] admin/includes/languages/espanol/categories.php, admin/includes/languages/espanol/configurationkeys.php, admin/includes/languages/espanol/create_order.php, admin/includes/languages/espanol/customers.php, admin/includes/languages/espanol/easypopulate.php, admin/includes/languages/espanol/editConfigurationGroup.php, admin/includes/languages/espanol/edit_orders.php, admin/includes/languages/espanol/infobox_configuration.php, admin/includes/languages/espanol/pending_accounts.php Language update: Espanol define fixes compared to English
  • 2006-06-08 15:40 Tom O'Neill <zip1>
  • [r2271] admin/includes/languages/french/add_orders.php, admin/includes/languages/french/c_orders.php, admin/includes/languages/french/categories.php, admin/includes/languages/french/configurationkeys.php, admin/includes/languages/french/coupon_admin.php, admin/includes/languages/french/create_account.php, admin/includes/languages/french/create_account_process.php, admin/includes/languages/french/create_order.php, admin/includes/languages/french/create_order_shipping.php, admin/includes/languages/french/crypt_convert.php, admin/includes/languages/french/customers.php, admin/includes/languages/french/easypopulate.php, admin/includes/languages/french/editConfigurationGroup.php, admin/includes/languages/french/edit_orders.php, admin/includes/languages/french/help/edit_textdata_help.php, admin/includes/languages/french/help/ep/data_feed_intro.html, admin/includes/languages/french/help/et/index4.html, admin/includes/languages/french/invoice.php, admin/includes/languages/french/modules/newsletters/affiliate_newsletter.php, admin/includes/languages/french/pending_accounts.php, admin/includes/languages/french/stats_monthly_sales.php Language update: French define fixes compared to English
  • 2006-06-08 15:41 Tom O'Neill <zip1>
  • [r2272] admin/includes/languages/german/affiliate_affiliates.php, admin/includes/languages/german/affiliate_banners.php, admin/includes/languages/german/affiliate_payment.php, admin/includes/languages/german/affiliate_statistics.php, admin/includes/languages/german/article_reviews.php, admin/includes/languages/german/articles.php, admin/includes/languages/german/configurationkeys.php, admin/includes/languages/german/coupon_admin.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/crypt_purge.php, admin/includes/languages/german/customers.php, admin/includes/languages/german/easypopulate.php, admin/includes/languages/german/editConfigurationGroup.php, admin/includes/languages/german/edit_key.php, admin/includes/languages/german/edit_orders.php, admin/includes/languages/german/faq.php, admin/includes/languages/german/gv_report.php, admin/includes/languages/german/header_tags_controller.php, admin/includes/languages/german/help/edit_textdata_help.php, admin/includes/languages/german/infobox_configuration.php, admin/includes/languages/german/invoice.php, admin/includes/languages/german/modules.php, admin/includes/languages/german/orders.php, admin/includes/languages/german/pending_accounts.php, admin/includes/languages/german/products_attributes.php, admin/includes/languages/german/specials.php, admin/includes/languages/german/stats_monthly_sales.php, admin/includes/languages/german/stats_products_notifications.php, admin/includes/languages/german/template_configuration1.php, admin/includes/languages/german/validate_new.php Language update: German define fixes compared to English
  • 2006-06-08 15:43 Tom O'Neill <zip1>
  • [r2273] admin/includes/languages/espanol.php, admin/includes/languages/french.php, admin/includes/languages/german.php Language update: Main language define fixes compared to English
  • 2006-06-09 19:48 Michael Day <mday>
  • [r2286] includes/modules/payment/worldpay.php, branches/loaded62pro/includes/modules/payment/worldpay.php, branches/loaded62standard/includes/modules/payment/worldpay.php Fix worldpay callback bug
  • 2006-06-09 19:53 Michael Day <mday>
  • [r2287] templates/content/wpcallback.tpl.php, branches/loaded62pro/templates/content/wpcallback.tpl.php, branches/loaded62standard/templates/content/wpcallback.tpl.php Fix worldpay callback bug
  • 2006-06-10 00:03 Scott Logsdon <datazen>
  • [r2295] 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:47 Scott Logsdon <datazen>
  • [r2302] 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:53 Scott Logsdon <datazen>
  • [r2306] 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:41 Scott Logsdon <datazen>
  • [r2309] admin/create_order.php, admin/includes/languages/english/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:47 Scott Logsdon <datazen>
  • [r2325] 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:30 Scott Logsdon <datazen>
  • [r2327] admin/create_order.php update admin/create_order.php (all versions) for Bug # B2B 490. Fixed table/cell problems.
  • 2006-06-12 12:57 Tom O'Neill <zip1>
  • [r2349] admin/includes/languages/english.php, admin/includes/languages/espanol.php, admin/includes/languages/french.php, admin/includes/languages/german.php Added missing warning messages that were moved from the catalog to the admin
  • 2006-06-12 12:59 Tom O'Neill <zip1>
  • [r2350] admin/includes/languages/english/template_configuration.php, admin/includes/languages/espanol/template_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 18:01 Tom O'Neill <zip1>
  • [r2361] templates/Original_B2B/images/logo.gif Change logo to new one
  • 2006-06-12 18:14 Tom O'Neill <zip1>
  • [r2364] admin/images/loaded_header_logo.gif, admin/includes/header.php Change admin logo to new one
  • 2006-06-13 12:06 Tom O'Neill <zip1>
  • [r2365] 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, admin/includes/languages/german/help/edit_textdata_help.php [#494] Encrypt/Decrypt - missing defines added define for default page
  • 2006-06-13 12:17 Tom O'Neill <zip1>
  • [r2370] admin/edit_key_help.php [#494] Encrypt/Decrypt - missing defines Fixed alt text define, and fixed return to main page
  • 2006-06-13 13:43 Tom O'Neill <zip1>
  • [r2376] includes/CRE_template_application_top.php Removed trailing slash from DIR_FS_TEMPLATE_BOXES contents
  • 2006-06-13 14:00 Tom O'Neill <zip1>
  • [r2379] 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-13 18:09 Tom O'Neill <zip1>
  • [r2381] admin/includes/application_top.php Fixed code for warning messages
  • 2006-06-15 01:24 Scott Logsdon <datazen>
  • [r2383] 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:04 Scott Logsdon <datazen>
  • [r2386] 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:26 Scott Logsdon <datazen>
  • [r2395] 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:05 Scott Logsdon <datazen>
  • [r2397] admin/create_order.php updated admin/create_order.php (all versions) - Step 1 width was too wide. Corrected.
  • 2006-06-16 03:20 Scott Logsdon <datazen>
  • [r2401] admin/stats_daily_products_sales_report.php correction to stylesheet reference.
  • 2006-06-16 03:41 Scott Logsdon <datazen>
  • [r2403] 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 17:17 Tom O'Neill <zip1>
  • [r2409] 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 18:57 Michael Day <mday>
  • [r2415] templates/content/allprods.tpl.php, branches/loaded62pro/templates/content/allprods.tpl.php, branches/loaded62standard/templates/content/allprods.tpl.php CRE Loaded Critical Bug Fix(bug id 511)
  • 2006-06-17 02:06 Scott Logsdon <datazen>
  • [r2416] 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>
  • [r2420] 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-19 04:50 Scott Logsdon <datazen>
  • [r2445] admin/images/Thumbs.db, admin/images/categories/Thumbs.db, admin/images/icons/Thumbs.db, admin/images/img/Thumbs.db, admin/includes/header/Thumbs.db, admin/includes/languages/english/images/buttons/Thumbs.db, images/Thumbs.db, includes/languages/english/images/Thumbs.db, templates/Original1_B2B/images/Thumbs.db, templates/Original1_B2B/images/buttons/english/Thumbs.db, templates/Original1_B2B/images/buttons/espanol/Thumbs.db, templates/Original1_B2B/images/buttons/french/images/button_add_address.gif, templates/Original1_B2B/images/buttons/french/images/button_add_wishlist.gif, templates/Original1_B2B/images/buttons/french/images/button_address.gif, templates/Original1_B2B/images/buttons/french/images/button_address_book.gif, templates/Original1_B2B/images/buttons/french/images/button_affiliate_banners.gif, templates/Original1_B2B/images/buttons/french/images/button_affiliate_build_a_link.gif, templates/Original1_B2B/images/buttons/french/images/button_affiliate_clickthroughs.gif, templates/Original1_B2B/images/buttons/french/images/button_affiliate_sales.gif, templates/Original1_B2B/images/buttons/french/images/button_back.gif, templates/Original1_B2B/images/buttons/french/images/button_banners.gif, templates/Original1_B2B/images/buttons/french/images/button_buy_now.gif, templates/Original1_B2B/images/buttons/french/images/button_change_address.gif, templates/Original1_B2B/images/buttons/french/images/button_checkout.gif, templates/Original1_B2B/images/buttons/french/images/button_confirm.gif, templates/Original1_B2B/images/buttons/french/images/button_confirm_order.gif, templates/Original1_B2B/images/buttons/french/images/button_continue.gif, templates/Original1_B2B/images/buttons/french/images/button_continue_shopping.gif, templates/Original1_B2B/images/buttons/french/images/button_create_account.gif, templates/Original1_B2B/images/buttons/french/images/button_delete.gif, templates/Original1_B2B/images/buttons/french/images/button_download.gif, templates/Original1_B2B/images/buttons/french/images/button_edit_account.gif, templates/Original1_B2B/images/buttons/french/images/button_history.gif, templates/Original1_B2B/images/buttons/french/images/button_in_cart.gif, templates/Original1_B2B/images/buttons/french/images/button_login.gif, templates/Original1_B2B/images/buttons/french/images/button_notifications.gif, templates/Original1_B2B/images/buttons/french/images/button_ppcheckout.gif, templates/Original1_B2B/images/buttons/french/images/button_printorder.gif, templates/Original1_B2B/images/buttons/french/images/button_quick_find.gif, templates/Original1_B2B/images/buttons/french/images/button_redeem.gif, templates/Original1_B2B/images/buttons/french/images/button_remove_notifications.gif, templates/Original1_B2B/images/buttons/french/images/button_reviews.gif, templates/Original1_B2B/images/buttons/french/images/button_search.gif, templates/Original1_B2B/images/buttons/french/images/button_send.gif, templates/Original1_B2B/images/buttons/french/images/button_shipping_options.gif, templates/Original1_B2B/images/buttons/french/images/button_submit_link.gif, templates/Original1_B2B/images/buttons/french/images/button_tell_a_friend.gif, templates/Original1_B2B/images/buttons/french/images/button_update.gif, templates/Original1_B2B/images/buttons/french/images/button_update_cart.gif, templates/Original1_B2B/images/buttons/french/images/button_write_review.gif, templates/Original1_B2B/images/buttons/french/images/buttons, templates/Original1_B2B/images/buttons/french/images/image_enlarge.gif, templates/Original1_B2B/images/buttons/french/images/small_delete.gif, templates/Original1_B2B/images/buttons/french/images/small_edit.gif, templates/Original1_B2B/images/buttons/french/images/small_view.gif, templates/Original1_B2B/images/buttons/german/Thumbs.db, templates/Original_B2B/images/Thumbs.db, templates/Original_B2B/images/buttons/english/Thumbs.db, templates/Original_B2B/images/buttons/espanol/Thumbs.db, templates/Original_B2B/images/buttons/french/button_add_address.gif, templates/Original_B2B/images/buttons/french/button_add_wishlist.gif, templates/Original_B2B/images/buttons/french/button_address.gif, templates/Original_B2B/images/buttons/french/button_address_book.gif, templates/Original_B2B/images/buttons/french/button_affiliate_banners.gif, templates/Original_B2B/images/buttons/french/button_affiliate_build_a_link.gif, templates/Original_B2B/images/buttons/french/button_affiliate_clickthroughs.gif, templates/Original_B2B/images/buttons/french/button_affiliate_sales.gif, templates/Original_B2B/images/buttons/french/button_back.gif, templates/Original_B2B/images/buttons/french/button_banners.gif, templates/Original_B2B/images/buttons/french/button_buy_now.gif, templates/Original_B2B/images/buttons/french/button_change_address.gif, templates/Original_B2B/images/buttons/french/button_checkout.gif, templates/Original_B2B/images/buttons/french/button_confirm.gif, templates/Original_B2B/images/buttons/french/button_confirm_order.gif, templates/Original_B2B/images/buttons/french/button_continue.gif, templates/Original_B2B/images/buttons/french/button_continue_shopping.gif, templates/Original_B2B/images/buttons/french/button_create_account.gif, templates/Original_B2B/images/buttons/french/button_delete.gif, templates/Original_B2B/images/buttons/french/button_download.gif, templates/Original_B2B/images/buttons/french/button_edit_account.gif, templates/Original_B2B/images/buttons/french/button_history.gif, templates/Original_B2B/images/buttons/french/button_in_cart.gif, templates/Original_B2B/images/buttons/french/button_login.gif, templates/Original_B2B/images/buttons/french/button_notifications.gif, templates/Original_B2B/images/buttons/french/button_ppcheckout.gif, templates/Original_B2B/images/buttons/french/button_printorder.gif, templates/Original_B2B/images/buttons/french/button_quick_find.gif, templates/Original_B2B/images/buttons/french/button_redeem.gif, templates/Original_B2B/images/buttons/french/button_remove_notifications.gif, templates/Original_B2B/images/buttons/french/button_reviews.gif, templates/Original_B2B/images/buttons/french/button_search.gif, templates/Original_B2B/images/buttons/french/button_send.gif, templates/Original_B2B/images/buttons/french/button_shipping_options.gif, templates/Original_B2B/images/buttons/french/button_submit_link.gif, templates/Original_B2B/images/buttons/french/button_tell_a_friend.gif, templates/Original_B2B/images/buttons/french/button_update.gif, templates/Original_B2B/images/buttons/french/button_update_cart.gif, templates/Original_B2B/images/buttons/french/button_write_review.gif, templates/Original_B2B/images/buttons/french/image_enlarge.gif, templates/Original_B2B/images/buttons/french/images, templates/Original_B2B/images/buttons/french/small_delete.gif, templates/Original_B2B/images/buttons/french/small_edit.gif, templates/Original_B2B/images/buttons/french/small_view.gif, templates/Original_B2B/images/buttons/german/Thumbs.db removed extra Thumbs files from images directories in Original_B2B template.
  • 2006-06-19 05:11 Scott Logsdon <datazen>
  • [r2446] admin/includes/modules/afs_v1.0/images/Thumbs.db, images/banners/thumbs, images/cards/thumbs, images/events_images/thumbs, images/gift/thumbs, templates/Original1_B2B/images/infobox/Thumbs.db, templates/Original_B2B/images/infobox/Thumbs.db removed extra Thumbs files from images folders
  • 2006-06-19 08:24 Jagdish Paswar <jagdish>
  • [r2449] admin/newsletters.php Update the newsletter send page, to add a series of checkbxes to allow a newsletter to be targeted to one or all existing customer groups.
  • 2006-06-19 08:25 Jagdish Paswar <jagdish>
  • [r2450] admin/includes/languages/english/newsletters.php Update the newsletter send page, to add a series of checkbxes to allow a newsletter to be targeted to one or all existing customer groups.
  • 2006-06-19 08:27 Jagdish Paswar <jagdish>
  • [r2451] admin/includes/modules/newsletters/newsletter.php Update the newsletter send page, to add a series of checkbxes to allow a newsletter to be targeted to one or all existing customer groups.
  • 2006-06-21 18:28 Scott Logsdon <datazen>
  • [r2461] templates/Original_B2B/extra_html_output.php catalog/templates/Original/extra_html_output.php - fixed table/cell problems with missing/extra tags.
  • 2006-06-22 12:11 Kiran Chitragar <wa4u>
  • [r2463] admin/define_mainpage.php Commented code for dropdown of language selection. tinymce was not responding to change of language.
  • 2006-06-22 13:46 Kiran Chitragar <wa4u>
  • [r2465] admin/categories.php Fixed bug no #490 from CREForge
  • 2006-06-22 14:39 Kiran Chitragar <wa4u>
  • [r2470] admin/includes/languages/english/images/buttons/button_return.gif Updated button CREForge bug #533
  • 2006-06-22 15:45 Scott Logsdon <datazen>
  • [r2475] 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 15:49 Scott Logsdon <datazen>
  • [r2476] admin/includes/boxes/affiliate.php [#534] catalog/admin/includes/boxes/affiliate.php - fix bug [#534] (all versions)

    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 16:46 Scott Logsdon <datazen>
  • [r2477] 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:19 Scott Logsdon <datazen>
  • [r2480] 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:09 Kiran Chitragar <wa4u>
  • [r2487] includes/modules/articles_xsell.php Updated for Helius type templates.
  • 2006-06-24 04:46 Scott Logsdon <datazen>
  • [r2499] images/Thumbs.db, includes/application_top.php, templates/E-vector_B2B/images/buttons/english/button_.psd, templates/E-vector_B2B/images/buttons/english/button_view_cart.gif, templates/Helius_B2B/images/buttons/english/button_.psd, templates/Helius_B2B/images/buttons/english/button_view_cart.gif, templates/Original_B2B/images/buttons/english/button_.psd, templates/Original_B2B/images/buttons/english/button_view_cart.gif, templates/Original_B2B/images/buttons/espanol/button_view_cart.gif, templates/Original_B2B/images/buttons/french/button_view_cart.gif, templates/Original_B2B/images/buttons/german/button_view_cart.gif, templates/Pixame_v1_B2B/images/buttons/english/button_.psd, templates/Pixame_v1_B2B/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 11:26 Kiran Chitragar <wa4u>
  • [r2502] templates/Original_B2B/boxes/categories2.php, templates/Original_B2B/boxes/categories3.php Noticed $categories_string4 = ''; was pasted, which was not necessary. Removed it.
  • 2006-06-24 11:29 Kiran Chitragar <wa4u>
  • [r2503] templates/Helius_B2B/boxes/categories2.php, templates/Helius_B2B/boxes/categories3.php Noticed $categories_string4 = ''; was pasted, which was not necessary. Removed it.
  • 2006-06-24 16:20 Scott Logsdon <datazen>
  • [r2507] 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:20 Scott Logsdon <datazen>
  • [r2510] 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:48 Scott Logsdon <datazen>
  • [r2514] 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:26 Scott Logsdon <datazen>
  • [r2518] 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>
  • [r2527] 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:54 Scott Logsdon <datazen>
  • [r2534] 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:11 Scott Logsdon <datazen>
  • [r2536] admin/includes/functions/general.php, includes/functions/general.php revert commit - tax rate calculation is correct - customer setup was wrong.
  • 2006-06-25 14:19 Tom O'Neill <zip1>
  • [r2540] admin/includes/languages/english/create_order.php, admin/includes/languages/english/crypt_convert.php, admin/includes/languages/english/crypt_update.php, admin/includes/languages/english/infobox_admin.php, admin/includes/languages/english/information.php, admin/includes/languages/english/login.php, admin/includes/languages/english/stats_monthly_sales.php, admin/includes/languages/english/template_admin.php, admin/includes/languages/espanol/c_orders.php, admin/includes/languages/espanol/create_order.php, admin/includes/languages/espanol/crypt_convert.php, admin/includes/languages/espanol/crypt_update.php, admin/includes/languages/espanol/infobox_admin.php, admin/includes/languages/espanol/information.php, admin/includes/languages/espanol/login.php, admin/includes/languages/espanol/stats_monthly_sales.php, admin/includes/languages/espanol/template_admin.php, admin/includes/languages/french/create_order.php, admin/includes/languages/french/crypt_convert.php, admin/includes/languages/french/crypt_update.php, admin/includes/languages/french/infobox_admin.php, admin/includes/languages/french/information.php, admin/includes/languages/french/login.php, admin/includes/languages/french/stats_monthly_sales.php, admin/includes/languages/french/template_admin.php, admin/includes/languages/german/c_orders.php, admin/includes/languages/german/create_order.php, admin/includes/languages/german/crypt_convert.php, admin/includes/languages/german/crypt_update.php, admin/includes/languages/german/infobox_admin.php, admin/includes/languages/german/information.php, admin/includes/languages/german/login.php, admin/includes/languages/german/stats_monthly_sales.php, admin/includes/languages/german/template_admin.php [T259] Language Compliance Duplicate Keys for Admin English French espanol German
  • 2006-06-25 14:56 Scott Logsdon <datazen>
  • [r2541] index.php, pw.php, validate_new.php corrections to SQL code
  • 2006-06-25 21:57 Scott Logsdon <datazen>
  • [r2544] templates/E-vector_B2B/boxes/wishlist.php, templates/Helius_B2B/boxes/wishlist.php, templates/Original_B2B/boxes/wishlist.php, templates/Pixame_v1_B2B/boxes/wishlist.php, templates/default/boxes/wishlist.php updated wishlist infoBox with updated wishlist query code.
  • 2006-06-25 22:35 Tom O'Neill <zip1>
  • [r2547] admin/includes/languages/espanol/coupon_admin.php, admin/includes/languages/espanol/create_account.php, admin/includes/languages/espanol/create_account_process.php, admin/includes/languages/espanol/easypopulate.php, admin/includes/languages/espanol/edit_orders.php, admin/includes/languages/espanol/newsletters.php, admin/includes/languages/espanol/stats_customers_orders.php, admin/includes/languages/espanol/stats_daily_products_sales_report.php, admin/includes/languages/french/admin_account.php, admin/includes/languages/french/admin_members.php, admin/includes/languages/french/affiliate_banners.php, admin/includes/languages/french/create_order.php, admin/includes/languages/french/easypopulate.php, admin/includes/languages/french/gv_queue.php, admin/includes/languages/french/infobox_configuration.php, admin/includes/languages/french/newsletters.php, admin/includes/languages/french/orders.php, admin/includes/languages/french/stats_daily_products_sales_report.php, admin/includes/languages/german/articles.php, admin/includes/languages/german/categories.php, admin/includes/languages/german/coupon_admin.php, admin/includes/languages/german/create_order.php, admin/includes/languages/german/information.php, admin/includes/languages/german/newsletters.php, admin/includes/languages/german/stats_daily_products_sales_report.php, admin/includes/languages/german/stats_monthly_sales.php, admin/includes/languages/german/stats_sales_report2.php [T259] Language Compliance Missing Keys espanol, french, german
  • 2006-06-25 22:47 Tom O'Neill <zip1>
  • [r2548] includes/languages/english/modules/shipping_estimator.php, includes/modules/shipping_estimator.php [T259] Language Compliance Duplicate key due to IF statement in a language define file. Removed if statement.
  • 2006-06-25 22:48 Scott Logsdon <datazen>
  • [r2549] includes/languages/english/wishlist_help.php updated wishlist faq to match wishlist functionality.

    catalog/includes/languages/english/wishlist_help.php
  • 2006-06-26 03:53 Scott Logsdon <datazen>
  • [r2552] admin/includes/functions/general.php, includes/functions/general.php fixed error in previous commit
  • 2006-06-26 12:29 Tom O'Neill <zip1>
  • [r2555] includes/languages/affiliate_german.php, includes/languages/english/affiliate_payment.php, includes/languages/english/index.php, includes/languages/english/links.php, includes/languages/espanol.php, includes/languages/espanol/affiliate_payment.php, includes/languages/espanol/affiliate_signup.php, includes/languages/espanol/index.php, includes/languages/espanol/links.php, includes/languages/espanol/modules/payment/authorizenet.php, includes/languages/espanol/modules/shipping_estimator.php, includes/languages/french/affiliate_payment.php, includes/languages/french/contact_us.php, includes/languages/french/index.php, includes/languages/french/links.php, includes/languages/french/modules/payment/cc_cvc.php, includes/languages/french/modules/payment/cc_old.php, includes/languages/french/modules/shipping_estimator.php, includes/languages/french/wishlist.php, includes/languages/german.php, includes/languages/german/affiliate_payment.php, includes/languages/german/affiliate_summary.php, includes/languages/german/index.php, includes/languages/german/links.php, includes/languages/german/modules/payment/authorizenet.php, includes/languages/german/modules/shipping_estimator.php [T259] Language Compliance Fixed or removed duplicate define keys for english espanol, french, german
  • 2006-06-26 12:55 Tom O'Neill <zip1>
  • [r2556] includes/languages/espanol/affiliate_signup.php, includes/languages/espanol/create_account.php, includes/languages/espanol/modules/order_total/ot_coupon.php, includes/languages/espanol/modules/shipping/zones_single.php, includes/languages/espanol/product_info.php, includes/languages/french/affiliate_signup.php, includes/languages/french/product_info.php, includes/languages/german/modules/order_total/ot_coupon.php, includes/languages/german/modules/shipping/zones_single.php, includes/languages/german/product_info.php [T259] Language Compliance Fixed or added missing define keys for espanol, french, german
  • 2006-06-26 18:42 Scott Logsdon <datazen>
  • [r2566] admin/includes/languages/english/images/buttons/Thumbs.db removed un-needed file
  • 2006-06-28 02:40 Scott Logsdon <datazen>
  • [r2576] admin/easypopulate_export.php B2B [#552] - repaired incorect SQL with EPA - easypopulate_export.php.

    FIND (around line 195): tep_db_query("insert into products_groups_tmp (select * from products_groups)");

    REPLACE with: tep_db_query("insert into products_groups_tmp select * from products_groups");
  • 2006-06-28 14:11 Tom O'Neill <zip1>
  • [r2578] admin/includes/languages/affiliate_german.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_payment.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/blacklist.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 B2B admin.
  • 2006-06-28 14:11 Tom O'Neill <zip1>
  • [r2579] includes/languages/affiliate_german.php, includes/languages/german/all_prodcats.php, includes/languages/german/create_account_success.php, includes/languages/german/loginbox.php, includes/languages/german/modules/shipping/fedex1.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 B2B Catalog.
  • 2006-06-28 15:31 Tom O'Neill <zip1>
  • [r2580] admin/includes/languages/german/affiliate_payment.php, admin/includes/languages/german/create_order.php, admin/includes/languages/german/gv_report.php, admin/includes/languages/german/infobox_admin.php, admin/includes/languages/german/infobox_configuration.php [T259] Language Compliance: Added German translations from Portalmaster for B2B admin. additional changes
  • 2006-06-29 18:32 Kiran Chitragar <wa4u>
  • [r2597] includes/modules/example.html, templates/E-vector_B2B/mainpage_modules/example.html, templates/Helius_B2B/mainpage_modules/example.html, templates/Original_B2B/mainpage_modules/example.html, templates/Pixame_v1_B2B/mainpage_modules/example.html, templates/default/mainpage_modules/example.html, branches/loaded62pro/includes/modules/example.html, branches/loaded62standard/includes/modules/example.html, branches/loaded62standard/templates/E-vector/mainpage_modules/example.html, branches/loaded62standard/templates/Helius/mainpage_modules/example.html, branches/loaded62standard/templates/Original/mainpage_modules/example.html, branches/loaded62standard/templates/Pixame_v1/mainpage_modules/example.html, branches/loaded62standard/templates/default/mainpage_modules/example.html Layout was damaging due to extra cell elements. Removed them
  • 2006-06-29 23:38 Michael Day <mday>
  • [r2604] admin/categories.php CRE Pro/B2B bug - [#545] Quantity Price Breaks field problem - 2 prices showing
  • 2006-06-30 00:20 Michael Day <mday>
  • [r2605] admin/categories.php [#509] Sub Products not working in B2B
  • 2006-07-01 11:00 Jagdish Paswar <jagdish>
  • [r2607] admin/categories.php Addeded the Qty Field for Sub-Products
  • 2006-07-01 11:02 Jagdish Paswar <jagdish>
  • [r2608] admin/includes/languages/english/categories.php Addeded the Qty Field for Sub-Products
  • 2006-07-01 16:49 Charles Williams, Jr. <ccwjr>
  • [r2611] admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _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, branches/loaded62standard/admin/includes/version.php, branches/loaded62standard/includes/version.php, branches/loaded62standard_wl/admin/includes/version.php, branches/loaded62standard_wl/includes/version.php Internal Cleanup - set the version files to 6.2.05 patch level
  • 2006-07-01 23:01 Scott Logsdon <datazen>
  • [r2618] templates/content/product_info.tpl.php align sub-products right
  • 2006-07-01 23:53 Scott Logsdon <datazen>
  • [r2621] templates/content/product_info.tpl.php align sub product names to right
  • 2006-07-02 00:59 Tom O'Neill <zip1>
  • [r2622] admin/categories.php, admin/includes/languages/english/categories.php, admin/includes/languages/espanol/categories.php, admin/includes/languages/espanol/easypopulate.php, admin/includes/languages/german/categories.php [T58] Bug fix for sppc
  • 2006-07-02 02:32 Scott Logsdon <datazen>
  • [r2624] templates/content/product_info.tpl.php updated with allow checkout code
  • 2006-07-02 02:53 Scott Logsdon <datazen>
  • [r2626] templates/content/product_info.tpl.php updated allow checkout code
  • 2006-07-03 00:38 Scott Logsdon <datazen>
  • [r2628] includes/languages/english/contact_us.php corrected spelling errors in includes/languages/english/contact_us.php
  • 2006-07-03 18:11 Tom O'Neill <zip1>
  • [r2644] admin/includes/functions/general.php [T205] Update message stack code in admin. Update error messages by adding display location to message stack string. See Admin message stack API for details on how to use
  • 2006-07-03 21:31 Tom O'Neill <zip1>
  • [r2648] admin/categories.php [#631] Two functions missing from b2b categories.php Adding back two missing function
  • 2006-07-05 21:59 Scott Logsdon <datazen>
  • [r2650] 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] admin/edit_orders.php, branches/loaded62pro/admin/edit_orders.php, branches/loaded62standard/admin/edit_orders.php bugfix - 417 - order editor, enable modify coupon discount value
  • 2006-07-07 11:18 Jagdish Paswar <jagdish>
  • [r2659] admin/newsletters.php Adding the Group Dropdown in the News letter SEction
  • 2006-07-07 11:19 Jagdish Paswar <jagdish>
  • [r2660] admin/includes/languages/english/newsletters.php Adding the Group Dropdown in the News letter SEction
  • 2006-07-07 17:44 Charles Williams, Jr. <ccwjr>
  • [r2662] admin/gv_mail.php, includes/application_top.php, includes/functions/html_output.php, branches/loaded62pro/admin/gv_mail.php, branches/loaded62pro/includes/application_top.php, branches/loaded62pro/includes/functions/html_output.php, branches/loaded62standard/admin/gv_mail.php, branches/loaded62standard/includes/application_top.php, branches/loaded62standard/includes/functions/html_output.php Bug#576 - remove all the partial search engine code.
  • 2006-07-07 18:04 Charles Williams, Jr. <ccwjr>
  • [r2664] includes/functions/html_output.php, branches/loaded62pro/includes/functions/html_output.php, branches/loaded62standard/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 12:31 Charles Williams, Jr. <ccwjr>
  • [r2675] includes/functions/html_output.php, branches/loaded62pro/includes/functions/html_output.php, branches/loaded62standard/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:08 Scott Logsdon <datazen>
  • [r2677] 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 06:50 root <root>
  • [r2679] admin/abandoned_orders.php Modified header to reflect actual content of file.

    This commit intended primarily to test new pre-commit script...

    DMG
  • 2006-07-10 17:03 Michael Day <mday>
  • [r2680] affiliate_sales.php, branches/loaded62pro/affiliate_sales.php, branches/loaded62standard/affiliate_sales.php BUG Fix 539
  • 2006-07-10 18:33 Michael Day <mday>
  • [r2681] admin/affiliate_clicks.php, affiliate_clicks.php, branches/loaded62pro/admin/affiliate_clicks.php, branches/loaded62pro/affiliate_clicks.php, branches/loaded62standard/admin/affiliate_clicks.php, branches/loaded62standard/affiliate_clicks.php Bug Fix 540/541
  • 2006-07-10 19:30 Charles Williams, Jr. <ccwjr>
  • [r2682] create_account.php, branches/loaded62pro/create_account.php, branches/loaded62standard/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 03:45 Scott Logsdon <datazen>
  • [r2687] 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:50 Tom O'Neill <zip1>
  • [r2692] 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:28 Tom O'Neill <zip1>
  • [r2698] admin/header_tags_controller.php, admin/includes/languages/english/header_tags_controller.php, 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] 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 18:33 Michael Day <mday>
  • [r2699] admin/c_orders.php, branches/loaded62pro/admin/c_orders.php, branches/loaded62standard/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] templates/E-vector_B2B/boxes/downloads.php, templates/Helius_B2B/boxes/downloads.php, templates/Original_B2B/boxes/downloads.php, templates/Pixame_v1_B2B/boxes/downloads.php, 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, branches/loaded62standard/templates/E-vector/boxes/downloads.php, branches/loaded62standard/templates/Helius/boxes/downloads.php, branches/loaded62standard/templates/Original/boxes/downloads.php, branches/loaded62standard/templates/Pixame_v1/boxes/downloads.php, branches/loaded62standard/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:50 Scott Logsdon <datazen>
  • [r2705] 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-16 15:18 Tom O'Neill <zip1>
  • [r2711] affiliate_banners_text.php [#001] PC end of line test
  • 2006-07-16 15:20 Tom O'Neill <zip1>
  • [r2712] affiliate_banners_text.php [#001] PC end of line test, undo pc format
  • 2006-07-18 16:34 Michael Day <mday>
  • [r2714] includes/classes/PriceFormatter.php PriceFormatter Price Range Adjustment & PriceFormatter customer ID modification
  • 2006-07-21 19:08 Tom O'Neill <zip1>
  • [r2724] admin/mail.php [#627] Admin email subjects Per Skype chat with sal, the subject drop downis to be turned back to input feild .

    This is a quick fix, a project task should be initated to have this be a drop down or input box
  • 2006-07-21 22:04 Tom O'Neill <zip1>
  • [r2727] 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 The size of the input boxes on various email forms in the admin and catalog make it diffiicult for a person to see what is typed there, frequently more then one subject can get entered.

    The size of the input box was inceased on the feild andseveral others.
  • 2006-07-21 22:07 Tom O'Neill <zip1>
  • [r2728] templates/content/create_account.tpl.php [#626] Subject email boxes in admin and catalog Per Skype chat with sal increase the size of the subject input box The size of the input boxes on various email forms in the admin and catalog make it diffiicult for a person to see what is typed there, frequently more then one subject can get entered.

    The size of the input box was inceased on the feild andseveral others.
  • 2006-07-21 22:12 Tom O'Neill <zip1>
  • [r2731] 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. The size of the input boxes on various email forms in the admin and catalog make it diffiicult for a person to see what is typed there, frequently more then one subject can get entered.

    The size of the input box was inceased on the feild andseveral others.
  • 2006-07-21 23:38 Scott Logsdon <datazen>
  • [r2733] admin/easypopulate_export.php fixed error in easypopulate_export.php. This is 2nd time I have fixed this error.
  • 2006-07-22 14:19 Tom O'Neill <zip1>
  • [r2735] 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, tell_a_friend_article.php, templates/content/article_info.tpl.php, templates/content/article_reviews.tpl.php, templates/content/article_reviews_info.tpl.php, templates/content/article_reviews_write.tpl.php, templates/content/article_search.tpl.php, templates/content/tell_a_friend.tpl.php, templates/content/tell_a_friend_article.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:33 Tom O'Neill <zip1>
  • [r2740] includes/application_top_cre_setting.php, includes/languages/english/wishlist_email.php, includes/languages/espanol/wishlist_help.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:31 Tom O'Neill <zip1>
  • [r2742] 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:18 Tom O'Neill <zip1>
  • [r2745] templates/E-vector_B2B/boxes/product_notifications.php, templates/Helius_B2B/boxes/product_notifications.php, templates/Original_B2B/boxes/product_notifications.php, templates/Pixame_v1_B2B/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 19:03 Tom O'Neill <zip1>
  • [r2749] 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:46 Tom O'Neill <zip1>
  • [r2753] 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 02:52 Tom O'Neill <zip1>
  • [r2755] 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 [#535] Admin Languages Detail button
  • 2006-07-24 03:25 Scott Logsdon <datazen>
  • [r2760] 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 notifications and shipwire modules.
  • 2006-07-24 17:53 Michael Day <mday>
  • [r2765] admin/categories.php, branches/loaded62pro/admin/categories.php [#331] Sub Products are not Multi Language enabled
  • 2006-07-24 22:33 Michael Day <mday>
  • [r2766] templates/content/products_new.tpl.php Bug Fix URGENT 6.2 B2B(New Products Pages)
  • 2006-07-24 23:57 Tom O'Neill <zip1>
  • [r2767] admin/categories.php, admin/includes/languages/english/categories.php, admin/includes/languages/espanol/categories.php, admin/includes/languages/french/categories.php, admin/includes/languages/german/categories.php [#625]Per bug found by support: The Group Access was not showing what was actually in the database. The problem actually was that it was assumed that there was a seperate form for update and inserting of new product. The actual test is if a pid was in the url. I also added a short message to use the base price in Quantity Price Breaks: rather then the regular price input box
  • 2006-07-25 00:50 Tom O'Neill <zip1>
  • [r2768] admin/categories.php I found a echo I was using to display a variable contents while testing removed
  • 2006-07-25 16:12 Charles Williams, Jr. <ccwjr>
  • [r2776] printorder.php, branches/loaded62pro/printorder.php, branches/loaded62standard/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 16:16 avinash
  • [r2777] admin/includes/languages/english/images/buttons/sync.gif 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:18 avinash
  • [r2778] admin/includes/languages/english/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-07-25 16:20 avinash
  • [r2779] admin/languages.inc.php, 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-25 16:37 avinash
  • [r2780] 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 17:10 avinash
  • [r2781] 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 17:23 avinash
  • [r2782] admin/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-07-25 18:12 Michael Day <mday>
  • [r2785] admin/easypopulate_export.php Error using easy populate Advanced(fit for lower version database)
  • 2006-07-26 14:47 Charles Williams, Jr. <ccwjr>
  • [r2786] admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _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, branches/loaded62standard/admin/includes/version.php, branches/loaded62standard/includes/version.php, branches/loaded62standard_wl/admin/includes/version.php, branches/loaded62standard_wl/includes/version.php Internal Setup - changes the version to 06 RC01 for the initial 06 patch release
  • 2006-07-27 01:11 Scott Logsdon <datazen>
  • [r2790] admin/customers.php removed left behind debugging code - found when testing RC06
  • 2006-07-27 11:46 avinash
  • [r2791] admin/languages.php Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement
  • 2006-07-27 12:19 avinash
  • [r2796] admin/languages.php Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement
  • 2006-07-27 12:34 avinash
  • [r2797] admin/languages.php Issue: Admin Language Enhancement – Roadmap Issue Summary: Admin Language Enhancement
  • 2006-07-27 14:09 Charles Williams, Jr. <ccwjr>
  • [r2800] admin/categories.php Bug #616 - the products_price name was used for 2 fields on the form. This has been changed. The second filed is now auto loaded from the first.
  • 2006-07-27 14:40 Scott Logsdon <datazen>
  • [r2801] admin/categories.php, admin/includes/languages/english/categories.php removed text next to Products Price (Net) - logic has changed and it is no longer needed.
  • 2006-07-27 18:49 Michael Day <mday>
  • [r2802] includes/classes/shopping_cart.php
  • 2006-07-27 22:04 Michael Day <mday>
  • [r2803] includes/classes/PriceFormatter.php [#605] index_products.tpl.php price display error
  • 2006-07-28 15:16 Charles Williams, Jr. <ccwjr>
  • [r2804] admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _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, branches/loaded62standard/admin/includes/version.php, branches/loaded62standard/includes/version.php, branches/loaded62standard_wl/admin/includes/version.php, branches/loaded62standard_wl/includes/version.php Internal Cleanup - reset the version to 06 RC02 for additional package build and testing
  • 2006-07-28 16:39 avinash
  • [r2809] admin/includes/functions/rss2html.php Remove </p> tag before the <!DOCTYPE HTML
  • 2006-07-28 16:41 avinash
  • [r2810] admin/includes/header.php Remove </p> tag before the <!DOCTYPE HTML
  • 2006-07-29 02:55 Charles Williams, Jr. <ccwjr>
  • [r2811] templates/content/create_account.tpl.php, branches/loaded62pro/templates/content/create_account.tpl.php, branches/loaded62standard/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:35 Scott Logsdon <datazen>
  • [r2817] 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>
  • [r2821] admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _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, branches/loaded62standard/admin/includes/version.php, branches/loaded62standard/includes/version.php, branches/loaded62standard_wl/admin/includes/version.php, branches/loaded62standard_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 18:44 denver
  • [r2822] includes/languages/english/create_account.php, includes/languages/espanol/create_account.php, includes/languages/french/create_account.php, includes/languages/german/create_account.php Bug [635] line 52 grammar and spelling
  • 2006-07-30 18:45 denver
  • [r2823] includes/languages/english/pw.php, includes/languages/espanol/pw.php, includes/languages/french/pw.php, includes/languages/german/pw.php Bug [636] Grammar and Spelling
  • 2006-07-30 22:15 Scott Logsdon <datazen>
  • [r2826] 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:53 Tom O'Neill <zip1>
  • [r2831] 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 problem.

    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 04:03 Scott Logsdon <datazen>
  • [r2834] 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 changed shipping module title from "Shipping" to what it actually is which is "Percent Rate". Don't need a shipping module named Shipping.
  • 2006-07-31 04:16 Scott Logsdon <datazen>
  • [r2835] 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 Michael Day <mday>
  • [r2839] includes/classes/PriceFormatter.php Shopping Cart Qty Price Logic Chnage
  • 2006-07-31 05:21 Tom O'Neill <zip1>
  • [r2842] 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 <mday>
  • [r2843] admin/edit_orders.php, admin/orders.php, branches/loaded62pro/admin/edit_orders.php, branches/loaded62pro/admin/orders.php, branches/loaded62standard/admin/edit_orders.php, branches/loaded62standard/admin/orders.php Fix display order ccv number bug
  • 2006-07-31 12:46 Charles Williams, Jr. <ccwjr>
  • [r2844] admin/languages.inc.php, admin/sync.php, branches/loaded62pro/admin/languages.inc.php, branches/loaded62pro/admin/sync.php, branches/loaded62standard/admin/languages.inc.php, branches/loaded62standard/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. <ccwjr>
  • [r2845] admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, _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, branches/loaded62standard/admin/includes/version.php, branches/loaded62standard/includes/version.php, branches/loaded62standard_wl/admin/includes/version.php, branches/loaded62standard_wl/includes/version.php Internal Cleanup - changed the version to 06 RC04 for package rebuild. Picking up new changes needed for 06 patch.
  • 2006-08-01 00:35 Michael Day <mday>
  • [r2850] includes/classes/PriceFormatter.php Fix Qty price break display bug
  • 2006-08-01 00:59 Michael Day <mday>
  • [r2851] includes/classes/PriceFormatter.php Fix Qty price break display bug
  • 2006-08-01 01:19 Scott Logsdon <datazen>
  • [r2852] admin/feature_not_present.php, includes/languages/english.php, includes/modules/order_total/ot_coupon.php, templates/content/checkout_payment.tpl.php repaired session problem with ot_coupon.php module and fixed related coupon errors.
  • 2006-08-01 10:46 Jagdish Paswar <jagdish>
  • [r2855] create_account.php added the require account approval in conjuction with require login
  • 2006-08-01 13:35 Charles Williams, Jr. <ccwjr>
  • [r2856] admin/includes/version.php, includes/version.php, _wl/admin/includes/version.php, branches/loaded62pro/admin/includes/version.php, branches/loaded62pro/includes/version.php, branches/loaded62pro_wl/admin/includes/version.php, branches/loaded62standard/admin/includes/version.php, branches/loaded62standard/includes/version.php, branches/loaded62standard_wl/admin/includes/version.php Internal Cleanup - changed the version to 06 RC05 for additional testing
  • 2006-08-01 19:33 Scott Logsdon <datazen>
  • [r2858] includes/languages/espanol/product_info.php [#648] repaired syntax error in includes/languages/espanol/product_info.php
  • 2006-08-01 21:36 Tom O'Neill <zip1>
  • [r2861] create_account.php [#649]Require Login and Require Account Approval were both set to true there was no validation code includes in the welcome email.

    I finally traced the problem to how the logic switches were set up, By including the code to create the vaidation with in the Require Login switch it was actuall not accessable when both were turned on or set to true.

    Also the == "true" would checl for a logical true false not the text string true the info was store as the test string true in the db. 'true'.

    I checked all comdinations of these two switches and they are working as they should
  • 2006-08-01 22:04 Tom O'Neill <zip1>
  • [r2862] create_account.php [#649]Require Login and Require Account Approval were both set to true there was no validation code includes in the welcome email. part two of this bug is that your could access the checkout_success.php and view all products. This was because the session information was retained even if it required require account aproval was on. code was added to kill the session information if require account approval is set to true but is bypasses if set to false.
  • 2006-08-01 23:31 Michael Day <mday>
  • [r2863] admin/categories.php, includes/modules/product_quantity_table.php CRE Loaded Release 6.2 B2B Task: Qty field handling on product edit

Generated by svn2cl 0.7