This is a discussion on Contribution Tracker within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; 1. Fixed a problem when updating a contrib status from the edit page. It was not updating the last integrated ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| 1. Fixed a problem when updating a contrib status from the edit page. It was not updating the last integrated date. STEPS: 1.in catalog/admin/contrib_tracker.php **** CHANGE**** case 'update': tep_db_query("update " . TABLE_CONTRIB_TRACKER . " set contr_last_modified = now(), status = '" . $status . "',contrib_name = '" . $contrib_name_new . "', contrib_link = '" . $contrib_link_new . "', config_comments = '" . $config_comments . "', last_update = '" . $last_update . "', contrib_vers= '" . $contrib_vers . "' where contr_id = '" . $HTTP_POST_VARS['contr_id'] . "'"); tep_redirect(tep_href_link(FILENAME_CONTRIB_TRACKE R, 'page=' . $HTTP_GET_VARS['page'] . '&sID=' . $contr_id . '&sort=' . $HTTP_GET_VARS['sort'])); break; ****TO:**** case 'update': if ($old_status!='1' && $status=='1'){ $current_status='1'; }else{ $current_status= $status; } tep_db_query("update " . TABLE_CONTRIB_TRACKER . " set contr_last_modified = now(), status = '" . $current_status . "',contrib_name = '" . $contrib_name_new . "', contrib_link = '" . $contrib_link_new . "', config_comments = '" . $config_comments . "', last_update = '" . $last_update . "', contrib_vers= '" . $contrib_vers . "' where contr_id = '" . $HTTP_POST_VARS['contr_id'] . "'"); tep_redirect(tep_href_link(FILENAME_CONTRIB_TRACKE R, 'page=' . $HTTP_GET_VARS['page'] . '&sID=' . $contr_id . '&sort=' . $HTTP_GET_VARS['sort'])); break; ****CHANGE: **** 0 = New Update Exists 1 = No New Update 2 = No status ****TO:**** 0 = New Update Exists 1 = No New Update 2 = No status COMPLETE PACKAGE More...
__________________ Michael Sasek osCMax Developer
|
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Contribution Tracker | michael_s | New osCommerce Contributions | 0 | 03-10-2007 11:11 PM |
| Contribution Tracker | michael_s | New osCommerce Contributions | 0 | 03-10-2007 10:00 PM |
| Contribution Tracker | michael_s | New osCommerce Contributions | 0 | 01-22-2007 07:50 AM |
| Contribution Tracker | michael_s | New osCommerce Contributions | 0 | 01-21-2007 04:21 AM |
| Contribution Tracker | michael_s | New osCommerce Contributions | 0 | 01-20-2007 05:00 PM |