phesis-commits Mailing List for Phesis
Status: Beta
Brought to you by:
wilt
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(349) |
Sep
(149) |
Oct
(233) |
Nov
(88) |
Dec
|
---|
From: <wi...@us...> - 2002-11-10 19:44:45
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog/includes/functions In directory usw-pr-cvs1:/tmp/cvs-serv7492/catalog/catalog/includes/functions Modified Files: html_output.php Log Message: update to new checkout Index: html_output.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/includes/functions/html_output.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** html_output.php 19 Oct 2002 12:54:41 -0000 1.3 --- html_output.php 10 Nov 2002 19:44:41 -0000 1.4 *************** *** 12,19 **** //// // The HTML href link wrapper function function tep_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true) { - global $kill_sid; - if (!tep_not_null($page)) { die('</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine the page link!<br><br>'); --- 12,23 ---- //// + // Parse the data used in the html tags to ensure the tags will not break + function tep_parse_input_field_data($data, $parse) { + return strtr(trim($data), $parse); + } + + //// // The HTML href link wrapper function function tep_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true) { if (!tep_not_null($page)) { die('</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine the page link!<br><br>'); *************** *** 39,42 **** --- 43,47 ---- $separator = '?'; } + while ( (substr($link, -1) == '&') || (substr($link, -1) == '?') ) $link = substr($link, 0, -1); *************** *** 48,52 **** } ! if ( (isset($sid) ) && ( !$kill_sid ) ) { $link .= $separator . $sid; } --- 53,57 ---- } ! if (isset($sid) && ( !$kill_sid ) ) { $link .= $separator . $sid; } *************** *** 72,79 **** // alt is added to the img tag even if it is null to prevent browsers from outputting // the image filename as default ! $image = '<img src="' . $src . '" border="0" alt="' . htmlspecialchars($alt) . '"'; if (tep_not_null($alt)) { ! $image .= ' title=" ' . htmlspecialchars($alt) . ' "'; } --- 77,84 ---- // alt is added to the img tag even if it is null to prevent browsers from outputting // the image filename as default ! $image = '<img src="' . tep_parse_input_field_data($src, array('"' => '"')) . '" border="0" alt="' . tep_parse_input_field_data($alt, array('"' => '"')) . '"'; if (tep_not_null($alt)) { ! $image .= ' title=" ' . tep_parse_input_field_data($alt, array('"' => '"')) . ' "'; } *************** *** 96,100 **** if ( ($width) && ($height) ) { ! $image .= ' width="' . $width . '" height="' . $height . '"'; } --- 101,105 ---- if ( ($width) && ($height) ) { ! $image .= ' width="' . tep_parse_input_field_data($width, array('"' => '"')) . '" height="' . tep_parse_input_field_data($height, array('"' => '"')) . '"'; } *************** *** 112,118 **** global $language; ! $image_submit = '<input type="image" src="' . DIR_WS_LANGUAGES . $language . '/images/buttons/' . $image . '" border="0" alt="' . htmlspecialchars($alt) . '"'; ! if (tep_not_null($alt)) $image_submit .= ' title=" ' . htmlspecialchars($alt) . ' "'; if (tep_not_null($parameters)) $image_submit .= ' ' . $parameters; --- 117,123 ---- global $language; ! $image_submit = '<input type="image" src="' . tep_parse_input_field_data(DIR_WS_LANGUAGES . $language . '/images/buttons/' . $image, array('"' => '"')) . '" border="0" alt="' . tep_parse_input_field_data($alt, array('"' => '"')) . '"'; ! if (tep_not_null($alt)) $image_submit .= ' title=" ' . tep_parse_input_field_data($alt, array('"' => '"')) . ' "'; if (tep_not_null($parameters)) $image_submit .= ' ' . $parameters; *************** *** 140,144 **** // Output a form function tep_draw_form($name, $action, $method = 'post', $parameters = '') { ! $form = '<form name="' . $name . '" action="' . $action . '" method="' . $method . '"'; if (tep_not_null($parameters)) $form .= ' ' . $parameters; --- 145,149 ---- // Output a form function tep_draw_form($name, $action, $method = 'post', $parameters = '') { ! $form = '<form name="' . tep_parse_input_field_data($name, array('"' => '"')) . '" action="' . tep_parse_input_field_data($action, array('"' => '"')) . '" method="' . tep_parse_input_field_data($method, array('"' => '"')) . '"'; if (tep_not_null($parameters)) $form .= ' ' . $parameters; *************** *** 152,161 **** // Output a form input field function tep_draw_input_field($name, $value = '', $parameters = '', $type = 'text', $reinsert_value = true) { ! $field = '<input type="' . $type . '" name="' . $name . '"'; if ( (isset($GLOBALS[$name])) && ($reinsert_value == true) ) { ! $field .= ' value="' . htmlspecialchars(trim($GLOBALS[$name])) . '"'; } elseif (tep_not_null($value)) { ! $field .= ' value="' . htmlspecialchars(trim($value)) . '"'; } --- 157,166 ---- // Output a form input field function tep_draw_input_field($name, $value = '', $parameters = '', $type = 'text', $reinsert_value = true) { ! $field = '<input type="' . tep_parse_input_field_data($type, array('"' => '"')) . '" name="' . tep_parse_input_field_data($name, array('"' => '"')) . '"'; if ( (isset($GLOBALS[$name])) && ($reinsert_value == true) ) { ! $field .= ' value="' . tep_parse_input_field_data($GLOBALS[$name], array('"' => '"')) . '"'; } elseif (tep_not_null($value)) { ! $field .= ' value="' . tep_parse_input_field_data($value, array('"' => '"')) . '"'; } *************** *** 176,182 **** // Output a selection field - alias function for tep_draw_checkbox_field() and tep_draw_radio_field() function tep_draw_selection_field($name, $type, $value = '', $checked = false, $parameters = '') { ! $selection = '<input type="' . $type . '" name="' . $name . '"'; ! if (tep_not_null($value)) $selection .= ' value="' . $value . '"'; if ( ($checked == true) || ($GLOBALS[$name] == 'on') || ( (isset($value)) && ($GLOBALS[$name] == $value) ) ) { --- 181,187 ---- // Output a selection field - alias function for tep_draw_checkbox_field() and tep_draw_radio_field() function tep_draw_selection_field($name, $type, $value = '', $checked = false, $parameters = '') { ! $selection = '<input type="' . tep_parse_input_field_data($type, array('"' => '"')) . '" name="' . tep_parse_input_field_data($name, array('"' => '"')) . '"'; ! if (tep_not_null($value)) $selection .= ' value="' . tep_parse_input_field_data($value, array('"' => '"')) . '"'; if ( ($checked == true) || ($GLOBALS[$name] == 'on') || ( (isset($value)) && ($GLOBALS[$name] == $value) ) ) { *************** *** 206,210 **** // Output a form textarea field function tep_draw_textarea_field($name, $wrap, $width, $height, $text = '', $parameters = '', $reinsert_value = true) { ! $field = '<textarea name="' . $name . '" wrap="' . $wrap . '" cols="' . $width . '" rows="' . $height . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; --- 211,215 ---- // Output a form textarea field function tep_draw_textarea_field($name, $wrap, $width, $height, $text = '', $parameters = '', $reinsert_value = true) { ! $field = '<textarea name="' . tep_parse_input_field_data($name, array('"' => '"')) . '" wrap="' . tep_parse_input_field_data($wrap, array('"' => '"')) . '" cols="' . tep_parse_input_field_data($width, array('"' => '"')) . '" rows="' . tep_parse_input_field_data($height, array('"' => '"')) . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; *************** *** 226,235 **** // Output a form hidden field function tep_draw_hidden_field($name, $value = '', $parameters = '') { ! $field = '<input type="hidden" name="' . $name . '" value="'; if (tep_not_null($value)) { ! $field .= htmlspecialchars(trim($value)); } else { ! $field .= htmlspecialchars(trim($GLOBALS[$name])); } --- 231,240 ---- // Output a form hidden field function tep_draw_hidden_field($name, $value = '', $parameters = '') { ! $field = '<input type="hidden" name="' . tep_parse_input_field_data($name, array('"' => '"')) . '" value="'; if (tep_not_null($value)) { ! $field .= tep_parse_input_field_data($value, array('"' => '"')); } else { ! $field .= tep_parse_input_field_data($GLOBALS[$name], array('"' => '"')); } *************** *** 244,248 **** // Hide form elements function tep_hide_session_id() { - global $cart, $customer_id; if (tep_not_null(SID)) return tep_draw_hidden_field(tep_session_name(), tep_session_id()); } --- 249,252 ---- *************** *** 251,255 **** // Output a form pull down menu function tep_draw_pull_down_menu($name, $values, $default = '', $parameters = '', $required = false) { ! $field = '<select name="' . $name . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; --- 255,259 ---- // Output a form pull down menu function tep_draw_pull_down_menu($name, $values, $default = '', $parameters = '', $required = false) { ! $field = '<select name="' . tep_parse_input_field_data($name, array('"' => '"')) . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; *************** *** 258,266 **** for ($i=0; $i<sizeof($values); $i++) { ! $field .= '<option value="' . $values[$i]['id'] . '"'; if ( ($GLOBALS[$name] == $values[$i]['id']) || ($default == $values[$i]['id']) ) { $field .= ' SELECTED'; } ! $field .= '>' . htmlspecialchars($values[$i]['text']) . '</option>'; } $field .= '</select>'; --- 262,270 ---- for ($i=0; $i<sizeof($values); $i++) { ! $field .= '<option value="' . tep_parse_input_field_data($values[$i]['id'], array('"' => '"')) . '"'; if ( ($GLOBALS[$name] == $values[$i]['id']) || ($default == $values[$i]['id']) ) { $field .= ' SELECTED'; } ! $field .= '>' . tep_parse_input_field_data($values[$i]['text'], array('"' => '"', '\'' => ''', '<' => '<', '>' => '>')) . '</option>'; } $field .= '</select>'; |
From: <wi...@us...> - 2002-11-10 19:44:45
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog/includes In directory usw-pr-cvs1:/tmp/cvs-serv7492/catalog/catalog/includes Modified Files: application_top.php Log Message: update to new checkout Index: application_top.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/includes/application_top.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** application_top.php 10 Nov 2002 17:50:00 -0000 1.14 --- application_top.php 10 Nov 2002 19:44:41 -0000 1.15 *************** *** 407,411 **** // infobox ! require(DIR_WS_CLASSES . 'boxes.php'); // auto activate and expire banners --- 407,426 ---- // infobox ! // require(DIR_WS_CLASSES . 'boxes.php'); ! //::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ! //Site thema configuration ! $configuration_query = tep_db_query("select configuration_key as themaKey, configuration_value as themaValue from " . TABLE_CONFIGURATION . " where configuration_key = 'SITE_THEMA'"); ! $configuration = tep_db_fetch_array($configuration_query); ! define($configuration['themaKey'], $configuration['themaValue']); ! if($configuration['themaKey']==""){ ! define(THEMA_STYLE, "stylesheet.css"); ! // infobox ! require(DIR_WS_CLASSES . 'boxes.php'); } ! else{ ! // Thema_infobox ! require(DIR_WS_CLASSES . 'thema_boxes.php'); ! define(THEMA_STYLE, DIR_WS_CLASSES . "thema/" . SITE_THEMA . "/stylesheet.css"); ! } ! //::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: // auto activate and expire banners |
From: <wi...@us...> - 2002-11-10 19:44:45
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog In directory usw-pr-cvs1:/tmp/cvs-serv7492/catalog/catalog Modified Files: default.php Log Message: update to new checkout Index: default.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/default.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** default.php 14 Oct 2002 22:22:23 -0000 1.4 --- default.php 10 Nov 2002 19:44:41 -0000 1.5 *************** *** 50,54 **** ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> ! <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> --- 50,54 ---- ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> ! <link rel="stylesheet" type="text/css" href="<? echo THEMA_STYLE;?>"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> *************** *** 121,125 **** $rows++; $cPath_new = tep_get_path($categories['categories_id']); ! $width = (100 / MAX_DISPLAY_CATEGORIES_PER_ROW) . '%'; echo ' <td align="center" class="smallText" style="width: ' . $width . '" valign="top"><a href="' . tep_href_link(FILENAME_DEFAULT, $cPath_new, 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . $categories['categories_image'], $categories['categories_name'], SUBCATEGORY_IMAGE_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '<br>' . $categories['categories_name'] . '</a></td>' . "\n"; if ((($rows / MAX_DISPLAY_CATEGORIES_PER_ROW) == floor($rows / MAX_DISPLAY_CATEGORIES_PER_ROW)) && ($rows != tep_db_num_rows($categories_query))) { --- 121,125 ---- $rows++; $cPath_new = tep_get_path($categories['categories_id']); ! $width = (int)(100 / MAX_DISPLAY_CATEGORIES_PER_ROW) . '%'; echo ' <td align="center" class="smallText" style="width: ' . $width . '" valign="top"><a href="' . tep_href_link(FILENAME_DEFAULT, $cPath_new, 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . $categories['categories_image'], $categories['categories_name'], SUBCATEGORY_IMAGE_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '<br>' . $categories['categories_name'] . '</a></td>' . "\n"; if ((($rows / MAX_DISPLAY_CATEGORIES_PER_ROW) == floor($rows / MAX_DISPLAY_CATEGORIES_PER_ROW)) && ($rows != tep_db_num_rows($categories_query))) { |
From: <wi...@us...> - 2002-11-10 19:44:45
|
Update of /cvsroot/phesis/Loaded_3/admin/admin In directory usw-pr-cvs1:/tmp/cvs-serv7492/admin/admin Modified Files: index.php Log Message: update to new checkout Index: index.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/admin/admin/index.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.php 20 Oct 2002 23:38:33 -0000 1.5 --- index.php 10 Nov 2002 19:44:41 -0000 1.6 *************** *** 291,295 **** </tr> <tr> ! <td align="center" class="text">Copyright (c) 2002 <a href="http://www.oscommerce.com" target="_blank">osCommerce</a> : <a href="mailto:hp...@os...">Harald Ponce de Leon</a></td> </tr> </table></td> --- 291,295 ---- </tr> <tr> ! <td><?php require(DIR_WS_INCLUDES .'footer.php'); ?></td> </tr> </table></td> |
From: <wi...@us...> - 2002-11-10 19:44:45
|
Update of /cvsroot/phesis/Loaded_3/admin/admin/includes In directory usw-pr-cvs1:/tmp/cvs-serv7492/admin/admin/includes Modified Files: footer.php Log Message: update to new checkout Index: footer.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/admin/admin/includes/footer.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** footer.php 9 Sep 2002 20:32:32 -0000 1.1 --- footer.php 10 Nov 2002 19:44:41 -0000 1.2 *************** *** 12,18 **** ?> <br> ! <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> ! <td align="center" class="smallText">Copyright © 2002 <a href="http://www.oscommerce.com" target="_blank">osCommerce</a> : <a href="mailto:hp...@os...">Harald Ponce de Leon</a><br>Powered by <a href="http://www.oscommerce.com" target="_blank">osCommerce</a></td> </tr> </table> --- 12,44 ---- ?> <br> ! <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> ! <td align="center" class="smallText"> ! <?php ! /* ! The following copyright announcement is in compliance ! to section 2c of the GNU General Public License, and ! thus can not be removed, or can only be modified ! appropriately. ! ! For more information please read the following ! Frequently Asked Questions entry on the osCommerce ! support site: ! ! http://www.oscommerce.com/community.php/faq,26/q,50 ! ! Please leave this comment intact together with the ! following copyright announcement. ! */ ! ?> ! E-Commerce Engine Copyright © 2002 <a href="http://www.oscommerce.com" target="_blank">osCommerce</a><br> ! osCommerce provides no warranty and is redistributable under the <a href="http://www.fsf.org/licenses/gpl.txt" target="_blank">GNU General Public License</a> ! </td> ! </tr> ! <tr> ! <td><?php echo tep_image(DIR_WS_IMAGES . 'pixel_trans.gif', '', '1', '5'); ?></td> ! </tr> ! <tr> ! <td align="center" class="smallText">Powered by <a href="http://www.oscommerce.com" target="_blank">osCommerce</a></td> </tr> </table> |
From: <wi...@us...> - 2002-11-10 18:06:35
|
Update of /cvsroot/phesis/Loaded_3/admin/admin/includes/functions In directory usw-pr-cvs1:/tmp/cvs-serv17094/admin/admin/includes/functions Modified Files: general.php Log Message: update to new checkout Index: general.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/admin/admin/includes/functions/general.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** general.php 10 Nov 2002 17:49:59 -0000 1.5 --- general.php 10 Nov 2002 18:06:32 -0000 1.6 *************** *** 1280,1282 **** --- 1280,1289 ---- return tep_draw_pull_down_menu($name, $zone_class_array, $zone_class_id); } + function tep_get_admin_name($admin_id) { + + $admin_query = tep_db_query("select admin_name from " . TABLE_ADMINISTRATORS . " where admin_id = '" . $admin_id . "'"); + $admin = tep_db_fetch_array($admin_query); + + return $admin['admin_name']; + } ?> |
From: <wi...@us...> - 2002-11-10 17:59:24
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog In directory usw-pr-cvs1:/tmp/cvs-serv13531/catalog/catalog Modified Files: contact_us.php create_account_process.php gv_faq.php gv_redeem.php gv_redeem_process.php password_forgotten.php pollbooth.php popup_search_help.php send_gv.php send_gv_process.php specials.php tell_a_friend.php Log Message: update to new checkout Index: contact_us.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/contact_us.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** contact_us.php 10 Nov 2002 14:00:16 -0000 1.4 --- contact_us.php 10 Nov 2002 17:59:21 -0000 1.5 *************** *** 31,35 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 31,46 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: create_account_process.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/create_account_process.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** create_account_process.php 10 Nov 2002 14:00:49 -0000 1.4 --- create_account_process.php 10 Nov 2002 17:59:21 -0000 1.5 *************** *** 185,189 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 185,200 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: gv_faq.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/gv_faq.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** gv_faq.php 10 Nov 2002 16:56:29 -0000 1.7 --- gv_faq.php 10 Nov 2002 17:59:21 -0000 1.8 *************** *** 25,29 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 25,40 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: gv_redeem.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/gv_redeem.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** gv_redeem.php 10 Nov 2002 16:56:29 -0000 1.7 --- gv_redeem.php 10 Nov 2002 17:59:21 -0000 1.8 *************** *** 60,64 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 60,75 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: gv_redeem_process.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/gv_redeem_process.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** gv_redeem_process.php 10 Nov 2002 16:56:29 -0000 1.7 --- gv_redeem_process.php 10 Nov 2002 17:59:21 -0000 1.8 *************** *** 60,64 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 60,75 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: password_forgotten.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/password_forgotten.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** password_forgotten.php 10 Nov 2002 14:01:31 -0000 1.4 --- password_forgotten.php 10 Nov 2002 17:59:21 -0000 1.5 *************** *** 39,43 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 39,54 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: pollbooth.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/pollbooth.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** pollbooth.php 26 Oct 2002 20:57:40 -0000 1.5 --- pollbooth.php 10 Nov 2002 17:59:21 -0000 1.6 *************** *** 18,22 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 18,33 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: popup_search_help.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/popup_search_help.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** popup_search_help.php 9 Sep 2002 20:44:16 -0000 1.1 --- popup_search_help.php 10 Nov 2002 17:59:21 -0000 1.2 *************** *** 20,24 **** <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> ! <title><?php echo TITLE; ?></title> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> --- 20,35 ---- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> Index: send_gv.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/send_gv.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** send_gv.php 10 Nov 2002 16:56:29 -0000 1.7 --- send_gv.php 10 Nov 2002 17:59:21 -0000 1.8 *************** *** 25,29 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 25,40 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: send_gv_process.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/send_gv_process.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** send_gv_process.php 10 Nov 2002 16:56:29 -0000 1.7 --- send_gv_process.php 10 Nov 2002 17:59:21 -0000 1.8 *************** *** 72,76 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 72,87 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: specials.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/specials.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** specials.php 10 Nov 2002 14:03:58 -0000 1.3 --- specials.php 10 Nov 2002 17:59:21 -0000 1.4 *************** *** 21,25 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 21,36 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: tell_a_friend.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/tell_a_friend.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tell_a_friend.php 10 Nov 2002 14:02:15 -0000 1.4 --- tell_a_friend.php 10 Nov 2002 17:59:21 -0000 1.5 *************** *** 36,40 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 36,51 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> |
From: <wi...@us...> - 2002-11-10 17:53:53
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog In directory usw-pr-cvs1:/tmp/cvs-serv10524/catalog/catalog Modified Files: checkout_success.php Log Message: update to new checkout Index: checkout_success.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/checkout_success.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** checkout_success.php 10 Nov 2002 16:56:29 -0000 1.6 --- checkout_success.php 10 Nov 2002 17:53:50 -0000 1.7 *************** *** 66,70 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 66,81 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> |
From: <wi...@us...> - 2002-11-10 17:53:00
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog In directory usw-pr-cvs1:/tmp/cvs-serv9941/catalog/catalog Modified Files: checkout_confirmation.php checkout_payment.php Log Message: update to new checkout Index: checkout_confirmation.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/checkout_confirmation.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** checkout_confirmation.php 10 Nov 2002 16:56:29 -0000 1.7 --- checkout_confirmation.php 10 Nov 2002 17:52:57 -0000 1.8 *************** *** 92,96 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 92,107 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: checkout_payment.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/checkout_payment.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** checkout_payment.php 10 Nov 2002 16:56:29 -0000 1.6 --- checkout_payment.php 10 Nov 2002 17:52:57 -0000 1.7 *************** *** 86,90 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 86,101 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> |
From: <wi...@us...> - 2002-11-10 17:52:16
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog In directory usw-pr-cvs1:/tmp/cvs-serv9497/catalog/catalog Modified Files: advanced_search_result.php allprods.php Log Message: update to new checkout Index: advanced_search_result.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/advanced_search_result.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** advanced_search_result.php 10 Nov 2002 13:59:32 -0000 1.4 --- advanced_search_result.php 10 Nov 2002 17:51:58 -0000 1.5 *************** *** 102,106 **** <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> ! <title><?php echo TITLE; ?></title> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> --- 102,117 ---- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> Index: allprods.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/allprods.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** allprods.php 26 Oct 2002 17:27:02 -0000 1.2 --- allprods.php 10 Nov 2002 17:51:59 -0000 1.3 *************** *** 21,25 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 21,36 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> |
From: <wi...@us...> - 2002-11-10 17:51:27
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog In directory usw-pr-cvs1:/tmp/cvs-serv9260/catalog/catalog Modified Files: account_history_info.php address_book_process.php Log Message: update to new checkout Index: account_history_info.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/account_history_info.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** account_history_info.php 10 Nov 2002 13:56:32 -0000 1.4 --- account_history_info.php 10 Nov 2002 17:51:23 -0000 1.5 *************** *** 37,41 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 37,52 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> Index: address_book_process.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/address_book_process.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** address_book_process.php 10 Nov 2002 13:58:07 -0000 1.5 --- address_book_process.php 10 Nov 2002 17:51:24 -0000 1.6 *************** *** 202,206 **** <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <title><?php echo TITLE; ?></title> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> --- 202,217 ---- <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> ! <?php ! // BOF: WebMakers.com Changed: Header Tag Controller v1.0 ! // Replaced by header_tags.php ! if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { ! require(DIR_WS_INCLUDES . 'header_tags.php'); ! } else { ! ?> ! <title><?php echo TITLE ?></title> ! <?php ! } ! // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ! ?> <base href="<?php echo (getenv('HTTPS') == 'on' ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> |
From: <wi...@us...> - 2002-11-10 17:50:06
|
Update of /cvsroot/phesis/Loaded_3/admin/admin/includes/functions In directory usw-pr-cvs1:/tmp/cvs-serv8590/admin/admin/includes/functions Modified Files: general.php Log Message: update to new checkout Index: general.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/admin/admin/includes/functions/general.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** general.php 10 Nov 2002 14:15:55 -0000 1.4 --- general.php 10 Nov 2002 17:49:59 -0000 1.5 *************** *** 504,507 **** --- 504,527 ---- return $product['products_description']; } + function tep_get_products_head_title_tag($product_id, $language_id) { + $product_query = tep_db_query("select products_head_title_tag from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . $product_id . "' and language_id = '" . $language_id . "'"); + $product = tep_db_fetch_array($product_query); + + return $product['products_head_title_tag']; + } + + function tep_get_products_head_desc_tag($product_id, $language_id) { + $product_query = tep_db_query("select products_head_desc_tag from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . $product_id . "' and language_id = '" . $language_id . "'"); + $product = tep_db_fetch_array($product_query); + + return $product['products_head_desc_tag']; + } + + function tep_get_products_head_keywords_tag($product_id, $language_id) { + $product_query = tep_db_query("select products_head_keywords_tag from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . $product_id . "' and language_id = '" . $language_id . "'"); + $product = tep_db_fetch_array($product_query); + + return $product['products_head_keywords_tag']; + } function tep_get_products_url($product_id, $language_id) { |
From: <wi...@us...> - 2002-11-10 17:50:06
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog/includes In directory usw-pr-cvs1:/tmp/cvs-serv8590/catalog/catalog/includes Modified Files: application_top.php Log Message: update to new checkout Index: application_top.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/includes/application_top.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** application_top.php 10 Nov 2002 16:56:29 -0000 1.13 --- application_top.php 10 Nov 2002 17:50:00 -0000 1.14 *************** *** 467,470 **** --- 467,476 ---- define('WARN_DOWNLOAD_DIRECTORY_NOT_READABLE', 'true'); require(DIR_WS_INCLUDES . 'add_application_top.php'); + // BOF: WebMakers.com Added: Header Tags Controller v1.0 + require(DIR_WS_FUNCTIONS . 'header_tags.php'); + // Clean out HTML comments from ALT tags etc. + require(DIR_WS_FUNCTIONS . 'clean_html_comments.php'); + // Also used by: WebMakers.com Added: FREE-CALL FOR PRICE + // EOF: WebMakers.com Added: Header Tags Controller v1.0 //================================================================ if ( ($HTTP_GET_VARS['currency']) ) { |
From: <wi...@us...> - 2002-11-10 17:31:55
|
Update of /cvsroot/phesis/pollbooth/catalog/includes/languages In directory usw-pr-cvs1:/tmp/cvs-serv31272/catalog/includes/languages Modified Files: english.php.txt Log Message: update to new checkout Index: english.php.txt =================================================================== RCS file: /cvsroot/phesis/pollbooth/catalog/includes/languages/english.php.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** english.php.txt 17 Aug 2002 10:52:02 -0000 1.1 --- english.php.txt 10 Nov 2002 17:31:52 -0000 1.2 *************** *** 1,4 **** --- 1,5 ---- // // Poll Box Text + define('POLL_TITLE', 'Poll'); define('_RESULTS', 'Results'); define('_POLLS','Polls'); |
From: <wi...@us...> - 2002-11-10 17:31:54
|
Update of /cvsroot/phesis/pollbooth/admin In directory usw-pr-cvs1:/tmp/cvs-serv31272/admin Modified Files: polls.php Log Message: update to new checkout Index: polls.php =================================================================== RCS file: /cvsroot/phesis/pollbooth/admin/polls.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** polls.php 6 Sep 2002 20:16:47 -0000 1.6 --- polls.php 10 Nov 2002 17:31:51 -0000 1.7 *************** *** 131,135 **** ?> <tr> ! <td align="right" class="main"><br><?php echo tep_image_submit('button_update.gif', IMAGE_UPDATE); ?> <?php echo '<a href="' . tep_href_link(FILENAME_POLLS, tep_get_all_get_params(array('action', 'cID')) . 'info=' . $HTTP_GET_VARS['cID'], 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . 'button_cancel.gif', IMAGE_CANCEL) . '</a>'; ?></td> </tr> </form> --- 131,135 ---- ?> <tr> ! <td align="right" class="main"><br><?php echo tep_image_submit('button_update.gif', IMAGE_UPDATE); ?> <?php echo '<a href="' . tep_href_link(FILENAME_POLLS, tep_get_all_get_params(array('action', 'cID')) . 'info=' . $HTTP_GET_VARS['cID'], 'NONSSL') . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>'; ?></td> </tr> </form> *************** *** 266,270 **** ?> <tr> ! <td align="right" class="main"><br><?php echo tep_image_submit('button_update.gif', IMAGE_UPDATE); ?> <?php echo '<a href="' . tep_href_link(FILENAME_POLLS, tep_get_all_get_params(array('action', 'cID')) . 'info=' . $HTTP_GET_VARS['cID'], 'NONSSL') . '">' . tep_image(DIR_WS_IMAGES . 'button_cancel.gif', IMAGE_CANCEL) . '</a>'; ?></td> </tr> </form> --- 266,270 ---- ?> <tr> ! <td align="right" class="main"><br><?php echo tep_image_submit('button_update.gif', IMAGE_UPDATE); ?> <?php echo '<a href="' . tep_href_link(FILENAME_POLLS, tep_get_all_get_params(array('action', 'cID')) . 'info=' . $HTTP_GET_VARS['cID'], 'NONSSL') . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>'; ?></td> </tr> </form> |
From: <wi...@us...> - 2002-11-10 17:31:54
|
Update of /cvsroot/phesis/pollbooth/catalog/includes/boxes In directory usw-pr-cvs1:/tmp/cvs-serv31272/catalog/includes/boxes Modified Files: polls.php Log Message: update to new checkout Index: polls.php =================================================================== RCS file: /cvsroot/phesis/pollbooth/catalog/includes/boxes/polls.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** polls.php 6 Sep 2002 22:17:38 -0000 1.5 --- polls.php 10 Nov 2002 17:31:52 -0000 1.6 *************** *** 44,48 **** $info_box_contents = array(); $info_box_contents[] = array('align' => 'center', ! 'text' => $poll_details['polltitle'] ); new infoBoxHeading($info_box_contents, false, false); --- 44,48 ---- $info_box_contents = array(); $info_box_contents[] = array('align' => 'center', ! 'text' => POLL_TITLE ); new infoBoxHeading($info_box_contents, false, false); *************** *** 50,53 **** --- 50,54 ---- $content = "<input type=\"hidden\" name=\"pollid\" value=\"".$pollid."\">\n"; $content .= "<input type=\"hidden\" name=\"forwarder\" value=\"".$url."\">\n"; + $content .= "<tr class=\"polltitle\"><td colspan=\"2\">". $poll_details['polltitle'] . "</td></tr>"; for ($i=1;$i<=12;$i++) { $query=tep_db_query("select pollid, optiontext, optioncount, voteid from phesis_poll_data where (pollid=$pollid) and (voteid=$i)"); |
From: <wi...@us...> - 2002-11-10 17:31:37
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog In directory usw-pr-cvs1:/tmp/cvs-serv31102/catalog/catalog Modified Files: stylesheet.css Log Message: update to new checkout Index: stylesheet.css =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/stylesheet.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** stylesheet.css 10 Nov 2002 14:04:28 -0000 1.4 --- stylesheet.css 10 Nov 2002 17:31:33 -0000 1.5 *************** *** 264,268 **** color: #ff0000; } ! .moduleRow { } .moduleRowOver { background-color: #D7E9F7; cursor: hand; } --- 264,287 ---- color: #ff0000; } ! TD.pollBoxRow { ! font-family: Verdana, Arial, sans-serif; ! font-size: 10px; ! border-color: #eeeeee; ! border-style: solid; ! border-width: 1px; ! } ! TD.pollBoxText { ! font-family: Verdana, Arial, sans-serif; ! font-size: 10px; ! border-color: #eeeeee; ! border-style: solid; ! border-width: 1px; ! } ! TR.pollOptRow { ! background: #f1f9fe; ! } ! TR.pollFooter { ! background: #f1f9fe; ! } .moduleRow { } .moduleRowOver { background-color: #D7E9F7; cursor: hand; } |
From: <wi...@us...> - 2002-11-10 17:31:37
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog/includes/languages In directory usw-pr-cvs1:/tmp/cvs-serv31102/catalog/catalog/includes/languages Modified Files: add_english.php Log Message: update to new checkout Index: add_english.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/includes/languages/add_english.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** add_english.php 10 Nov 2002 14:29:56 -0000 1.3 --- add_english.php 10 Nov 2002 17:31:34 -0000 1.4 *************** *** 11,14 **** define('GV_HAS_VOUCHERB', '"><b>email</b></a> to someone'); ! define('ENTRY_AMOUNT_CHECK_ERROR', 'You do not have enough funds to send this amount.'); ?> --- 11,23 ---- define('GV_HAS_VOUCHERB', '"><b>email</b></a> to someone'); ! define('ENTRY_AMOUNT_CHECK_ERROR', 'You do not have enough funds to send this amount.'); ! // ! // Poll Box Text ! define('POLL_TITLE', 'Poll'); ! define('_RESULTS', 'Results'); ! define('_POLLS','Polls'); ! define('_VOTE', 'VOTE'); ! define('_VOTES', 'Votes'); ! define('_NOPOLLS','No eligible polls'); ! define('_NOPOLLSCONTENT','There are no polls that you are eligible for, however you can still view the results of other polls<br><br><a href="pollbooth.php">['._POLLS.']'); ?> |
From: <wi...@us...> - 2002-11-10 17:13:03
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog/includes/boxes In directory usw-pr-cvs1:/tmp/cvs-serv21775/catalog/catalog/includes/boxes Modified Files: customer_gv.php Log Message: update to new checkout Index: customer_gv.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/includes/boxes/customer_gv.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** customer_gv.php 10 Nov 2002 14:29:56 -0000 1.3 --- customer_gv.php 10 Nov 2002 17:12:59 -0000 1.4 *************** *** 17,21 **** if ($gv_result=tep_db_fetch_array($gv_query)) $customer_gv_amount=$gv_result['amount']; } ! if ($customer_gv_amount>0) { ?> <tr> --- 17,21 ---- if ($gv_result=tep_db_fetch_array($gv_query)) $customer_gv_amount=$gv_result['amount']; } ! if ($customer_gv_amount>0) { ?> <tr> |
From: <wi...@us...> - 2002-11-10 17:07:05
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog/includes/modules/shipping In directory usw-pr-cvs1:/tmp/cvs-serv18077/catalog/catalog/includes/modules/shipping Modified Files: table.php Log Message: update to new checkout Index: table.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/includes/modules/shipping/table.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** table.php 10 Nov 2002 14:29:56 -0000 1.4 --- table.php 10 Nov 2002 17:07:02 -0000 1.5 *************** *** 28,32 **** if (MODULE_SHIPPING_TABLE_MODE == 'price') { ! $order_total = $cart->show_total(); } else { $order_total = $shipping_weight; --- 28,32 ---- if (MODULE_SHIPPING_TABLE_MODE == 'price') { ! $order_total = $cart->show_total_virtual(); } else { $order_total = $shipping_weight; |
From: <wi...@us...> - 2002-11-10 17:06:47
|
Update of /cvsroot/phesis/credit_class_GV_NC/catalog/includes/modules/shipping In directory usw-pr-cvs1:/tmp/cvs-serv17884/catalog/includes/modules/shipping Modified Files: table.php Log Message: update to new checkout Index: table.php =================================================================== RCS file: /cvsroot/phesis/credit_class_GV_NC/catalog/includes/modules/shipping/table.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** table.php 10 Nov 2002 11:40:05 -0000 1.3 --- table.php 10 Nov 2002 17:06:44 -0000 1.4 *************** *** 28,32 **** if (MODULE_SHIPPING_TABLE_MODE == 'price') { ! $order_total = $cart->show_total(); } else { $order_total = $shipping_weight; --- 28,32 ---- if (MODULE_SHIPPING_TABLE_MODE == 'price') { ! $order_total = $cart->show_total_virtual(); } else { $order_total = $shipping_weight; |
From: <wi...@us...> - 2002-11-10 17:01:47
|
Update of /cvsroot/phesis/credit_class_GV_NC/catalog In directory usw-pr-cvs1:/tmp/cvs-serv14818/catalog Modified Files: checkout_confirmation.php checkout_payment.php checkout_process.php checkout_success.php Log Message: update to new checkout Index: checkout_confirmation.php =================================================================== RCS file: /cvsroot/phesis/credit_class_GV_NC/catalog/checkout_confirmation.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** checkout_confirmation.php 10 Nov 2002 11:40:02 -0000 1.3 --- checkout_confirmation.php 10 Nov 2002 17:01:42 -0000 1.4 *************** *** 42,47 **** require(DIR_WS_CLASSES . 'payment.php'); $payment_modules = new payment($payment); ! ! if ( (is_array($payment_modules->modules)) && (sizeof($payment_modules->modules) > 1) && (!is_object($$payment)) ) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL')); } --- 42,54 ---- require(DIR_WS_CLASSES . 'payment.php'); $payment_modules = new payment($payment); ! //ICW ADDED FOR ORDER_TOTAL CREDIT SYSTEM - Start Addition ! require(DIR_WS_CLASSES . 'order_total.php'); ! require(DIR_WS_CLASSES . 'order.php'); ! $order = new order; ! $order_total_modules = new order_total; ! $order_total_modules->collect_posts(); ! $order_total_modules->pre_confirmation_check(); ! //ICW ADDED FOR ORDER_TOTAL CREDIT SYSTEM - End Addition ! if ( (is_array($payment_modules->modules)) && (sizeof($payment_modules->modules) > 1) && (!is_object($$payment)) && (!$credit_covers) ) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL')); } *************** *** 55,62 **** $shipping_modules = new shipping($shipping); ! require(DIR_WS_CLASSES . 'order_total.php'); ! require(DIR_WS_CLASSES . 'order.php'); ! $order = new order; ! $order_total_modules = new order_total; // Stock Check --- 62,71 ---- $shipping_modules = new shipping($shipping); ! //ICW ADDED FOR ORDER_TOTAL CREDIT SYSTEM ! // This code has been moved further up ! // require(DIR_WS_CLASSES . 'order_total.php'); ! // require(DIR_WS_CLASSES . 'order.php'); ! // $order = new order; ! // $order_total_modules = new order_total; // Stock Check Index: checkout_payment.php =================================================================== RCS file: /cvsroot/phesis/credit_class_GV_NC/catalog/checkout_payment.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** checkout_payment.php 10 Nov 2002 11:40:02 -0000 1.3 --- checkout_payment.php 10 Nov 2002 17:01:43 -0000 1.4 *************** *** 67,73 **** require(DIR_WS_CLASSES . 'order.php'); $order = new order; $total_weight = $cart->show_weight(); ! $total_count = $cart->count_contents(); // load all enabled payment modules --- 67,75 ---- require(DIR_WS_CLASSES . 'order.php'); $order = new order; + require(DIR_WS_CLASSES . 'order_total.php');//ICW ADDED FOR ORDER_TOTAL CREDIT SYSTEM + $order_total_modules = new order_total;//ICW ADDED FOR ORDER_TOTAL CREDIT SYSTEM $total_weight = $cart->show_weight(); ! $total_count = $cart->count_contents_virtual(); // load all enabled payment modules *************** *** 312,315 **** --- 314,320 ---- <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> + <?php + echo $order_total_modules->credit_selection();//ICW ADDED FOR ORDER_TOTAL CREDIT SYSTEM + ?> <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> Index: checkout_process.php =================================================================== RCS file: /cvsroot/phesis/credit_class_GV_NC/catalog/checkout_process.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** checkout_process.php 10 Nov 2002 11:40:04 -0000 1.3 --- checkout_process.php 10 Nov 2002 17:01:43 -0000 1.4 *************** *** 161,165 **** tep_db_perform(TABLE_ORDERS_PRODUCTS, $sql_data_array); $order_products_id = tep_db_insert_id(); ! //------insert customer choosen option to order-------- $attributes_exist = '0'; --- 161,165 ---- tep_db_perform(TABLE_ORDERS_PRODUCTS, $sql_data_array); $order_products_id = tep_db_insert_id(); ! $order_total_modules->update_credit_account($i);//ICW ADDED FOR ORDER_TOTAL CREDIT SYSTEM //------insert customer choosen option to order-------- $attributes_exist = '0'; *************** *** 212,216 **** $products_ordered .= $order->products[$i]['qty'] . ' x ' . $order->products[$i]['name'] . ' (' . $order->products[$i]['model'] . ') = ' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . $products_ordered_attributes . "\n"; } ! // lets start with the email confirmation $email_order = STORE_NAME . "\n" . --- 212,216 ---- $products_ordered .= $order->products[$i]['qty'] . ' x ' . $order->products[$i]['name'] . ' (' . $order->products[$i]['model'] . ') = ' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . $products_ordered_attributes . "\n"; } ! $order_total_modules->apply_credit();//ICW ADDED FOR ORDER_TOTAL CREDIT SYSTEM // lets start with the email confirmation $email_order = STORE_NAME . "\n" . Index: checkout_success.php =================================================================== RCS file: /cvsroot/phesis/credit_class_GV_NC/catalog/checkout_success.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** checkout_success.php 10 Nov 2002 11:40:04 -0000 1.3 --- checkout_success.php 10 Nov 2002 17:01:43 -0000 1.4 *************** *** 110,113 **** --- 110,114 ---- <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> + <?php require('add_checkout_success.php'); //ORDER TOTAL CLASS/GV SYSTEM ?> <tr> <td class="main"><b><?php echo TABLE_HEADING_COMMENTS; ?></b></td> |
From: <wi...@us...> - 2002-11-10 17:01:46
|
Update of /cvsroot/phesis/credit_class_GV_NC/catalog/includes/modules/shipping In directory usw-pr-cvs1:/tmp/cvs-serv14818/catalog/includes/modules/shipping Modified Files: item.php Log Message: update to new checkout Index: item.php =================================================================== RCS file: /cvsroot/phesis/credit_class_GV_NC/catalog/includes/modules/shipping/item.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** item.php 10 Nov 2002 11:40:05 -0000 1.3 --- item.php 10 Nov 2002 17:01:43 -0000 1.4 *************** *** 31,35 **** 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_ITEM_TEXT_WAY, ! 'cost' => SHIPPING_HANDLING + (MODULE_SHIPPING_ITEM_COST * $total_count)))); if (tep_not_null($this->icon)) $this->quotes['icon'] = tep_image($this->icon, $this->title); --- 31,35 ---- 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_ITEM_TEXT_WAY, ! 'cost' => SHIPPING_HANDLING * ($total_count>0) + (MODULE_SHIPPING_ITEM_COST * $total_count)))); if (tep_not_null($this->icon)) $this->quotes['icon'] = tep_image($this->icon, $this->title); |
From: <wi...@us...> - 2002-11-10 17:01:45
|
Update of /cvsroot/phesis/credit_class_GV_NC/admin/includes In directory usw-pr-cvs1:/tmp/cvs-serv14818/admin/includes Modified Files: column_left.php Log Message: update to new checkout Index: column_left.php =================================================================== RCS file: /cvsroot/phesis/credit_class_GV_NC/admin/includes/column_left.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** column_left.php 8 Nov 2002 21:10:19 -0000 1.1.1.1 --- column_left.php 10 Nov 2002 17:01:42 -0000 1.2 *************** *** 20,23 **** require(DIR_WS_BOXES . 'tools.php'); require(DIR_WS_BOXES . 'gv_admin.php'); //GV SYSTEM - require(DIR_WS_BOXES . 'coupon_admin.php'); ?> --- 20,22 ---- |
From: <wi...@us...> - 2002-11-10 16:58:21
|
Update of /cvsroot/phesis/Loaded_3/catalog/catalog/includes/modules/shipping In directory usw-pr-cvs1:/tmp/cvs-serv12640/catalog/catalog/includes/modules/shipping Modified Files: item.php Log Message: update to new checkout Index: item.php =================================================================== RCS file: /cvsroot/phesis/Loaded_3/catalog/catalog/includes/modules/shipping/item.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** item.php 10 Nov 2002 14:29:56 -0000 1.3 --- item.php 10 Nov 2002 16:58:18 -0000 1.4 *************** *** 31,35 **** 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_ITEM_TEXT_WAY, ! 'cost' => SHIPPING_HANDLING + (MODULE_SHIPPING_ITEM_COST * $total_count)))); if (tep_not_null($this->icon)) $this->quotes['icon'] = tep_image($this->icon, $this->title); --- 31,35 ---- 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_ITEM_TEXT_WAY, ! 'cost' => SHIPPING_HANDLING * ($total_count>0) + (MODULE_SHIPPING_ITEM_COST * $total_count)))); if (tep_not_null($this->icon)) $this->quotes['icon'] = tep_image($this->icon, $this->title); |