Skip to content

Commit

Permalink
Replace <b></b> with <strong></strong>
Browse files Browse the repository at this point in the history
  • Loading branch information
markkevans authored and haraldpdl committed Oct 29, 2010
1 parent 9269edd commit cfa20b6
Show file tree
Hide file tree
Showing 86 changed files with 351 additions and 359 deletions.
4 changes: 2 additions & 2 deletions catalog/account_history.php
Expand Up @@ -55,8 +55,8 @@
<div class="contentText">
<table border="0" width="100%" cellspacing="2" cellpadding="2">
<tr>
<td width="50%" valign="top"><?php echo '<b>' . TEXT_ORDER_DATE . '</b> ' . tep_date_long($history['date_purchased']) . '<br /><b>' . $order_type . '</b> ' . tep_output_string_protected($order_name); ?></td>
<td width="30%" valign="top"><?php echo '<b>' . TEXT_ORDER_PRODUCTS . '</b> ' . $products['count'] . '<br /><b>' . TEXT_ORDER_COST . '</b> ' . strip_tags($history['order_total']); ?></td>
<td width="50%" valign="top"><?php echo '<strong>' . TEXT_ORDER_DATE . '</strong> ' . tep_date_long($history['date_purchased']) . '<br /><strong>' . $order_type . '</strong> ' . tep_output_string_protected($order_name); ?></td>
<td width="30%" valign="top"><?php echo '<strong>' . TEXT_ORDER_PRODUCTS . '</strong> ' . $products['count'] . '<br /><strong>' . TEXT_ORDER_COST . '</strong> ' . strip_tags($history['order_total']); ?></td>
<td width="20%" align="right"><?php echo tep_draw_button(SMALL_IMAGE_BUTTON_VIEW, 'document', tep_href_link(FILENAME_ACCOUNT_HISTORY_INFO, (isset($HTTP_GET_VARS['page']) ? 'page=' . $HTTP_GET_VARS['page'] . '&' : '') . 'order_id=' . $history['orders_id'], 'SSL'), 'primary'); ?></td>
</tr>
</table>
Expand Down
18 changes: 9 additions & 9 deletions catalog/account_history_info.php
Expand Up @@ -58,7 +58,7 @@
?>
<td width="30%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td><b><?php echo HEADING_DELIVERY_ADDRESS; ?></b></td>
<td><strong><?php echo HEADING_DELIVERY_ADDRESS; ?></strong></td>
</tr>
<tr>
<td><?php echo tep_address_format($order->delivery['format_id'], $order->delivery, 1, ' ', '<br />'); ?></td>
Expand All @@ -67,7 +67,7 @@
if (tep_not_null($order->info['shipping_method'])) {
?>
<tr>
<td><b><?php echo HEADING_SHIPPING_METHOD; ?></b></td>
<td><strong><?php echo HEADING_SHIPPING_METHOD; ?></strong></td>
</tr>
<tr>
<td><?php echo $order->info['shipping_method']; ?></td>
Expand All @@ -84,16 +84,16 @@
if (sizeof($order->info['tax_groups']) > 1) {
?>
<tr>
<td colspan="2"><b><?php echo HEADING_PRODUCTS; ?></b></td>
<td align="right"><b><?php echo HEADING_TAX; ?></b></td>
<td align="right"><b><?php echo HEADING_TOTAL; ?></b></td>
<td colspan="2"><strong><?php echo HEADING_PRODUCTS; ?></strong></td>
<td align="right"><strong><?php echo HEADING_TAX; ?></strong></td>
<td align="right"><strong><?php echo HEADING_TOTAL; ?></strong></td>
</tr>
<?php
} else {
?>
<tr>
<td colspan="2"><b><?php echo HEADING_PRODUCTS; ?></b></td>
<td align="right"><b><?php echo HEADING_TOTAL; ?></b></td>
<td colspan="2"><strong><?php echo HEADING_PRODUCTS; ?></strong></td>
<td align="right"><strong><?php echo HEADING_TOTAL; ?></strong></td>
</tr>
<?php
}
Expand Down Expand Up @@ -131,13 +131,13 @@
<tr>
<td width="30%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td><b><?php echo HEADING_BILLING_ADDRESS; ?></b></td>
<td><strong><?php echo HEADING_BILLING_ADDRESS; ?></strong></td>
</tr>
<tr>
<td><?php echo tep_address_format($order->billing['format_id'], $order->billing, 1, ' ', '<br />'); ?></td>
</tr>
<tr>
<td><b><?php echo HEADING_PAYMENT_METHOD; ?></b></td>
<td><strong><?php echo HEADING_PAYMENT_METHOD; ?></strong></td>
</tr>
<tr>
<td><?php echo $order->info['payment_method']; ?></td>
Expand Down
2 changes: 1 addition & 1 deletion catalog/account_newsletters.php
Expand Up @@ -58,7 +58,7 @@
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td><?php echo tep_draw_checkbox_field('newsletter_general', '1', (($newsletter['customers_newsletter'] == '1') ? true : false), 'onclick="checkBox(\'newsletter_general\')"'); ?></td>
<td><b><?php echo MY_NEWSLETTERS_GENERAL_NEWSLETTER; ?></b><br /><?php echo MY_NEWSLETTERS_GENERAL_NEWSLETTER_DESCRIPTION; ?></td>
<td><strong><?php echo MY_NEWSLETTERS_GENERAL_NEWSLETTER; ?></strong><br /><?php echo MY_NEWSLETTERS_GENERAL_NEWSLETTER_DESCRIPTION; ?></td>
</tr>
</table>
</div>
Expand Down
4 changes: 2 additions & 2 deletions catalog/account_notifications.php
Expand Up @@ -90,7 +90,7 @@
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td width="30"><?php echo tep_draw_checkbox_field('product_global', '1', (($global['global_product_notifications'] == '1') ? true : false), 'onclick="checkBox(\'product_global\')"'); ?></td>
<td><b><?php echo GLOBAL_NOTIFICATIONS_TITLE; ?></b><br /><?php echo GLOBAL_NOTIFICATIONS_DESCRIPTION; ?></td>
<td><strong><?php echo GLOBAL_NOTIFICATIONS_TITLE; ?></strong><br /><?php echo GLOBAL_NOTIFICATIONS_DESCRIPTION; ?></td>
</tr>
</table>
</div>
Expand Down Expand Up @@ -121,7 +121,7 @@

<tr>
<td width="30"><?php echo tep_draw_checkbox_field('products[' . $counter . ']', $products['products_id'], true, 'onclick="checkBox(\'products[' . $counter . ']\')"'); ?></td>
<td><b><?php echo $products['products_name']; ?></b></td>
<td><strong><?php echo $products['products_name']; ?></strong></td>
</tr>

<?php
Expand Down
2 changes: 1 addition & 1 deletion catalog/address_book.php
Expand Up @@ -62,7 +62,7 @@

<div>
<span style="float: right;"><?php echo tep_draw_button(SMALL_IMAGE_BUTTON_EDIT, 'document', tep_href_link(FILENAME_ADDRESS_BOOK_PROCESS, 'edit=' . $addresses['address_book_id'], 'SSL')) . ' ' . tep_draw_button(SMALL_IMAGE_BUTTON_DELETE, 'trash', tep_href_link(FILENAME_ADDRESS_BOOK_PROCESS, 'delete=' . $addresses['address_book_id'], 'SSL')); ?></span>
<p><b><?php echo tep_output_string_protected($addresses['firstname'] . ' ' . $addresses['lastname']); ?></b><?php if ($addresses['address_book_id'] == $customer_default_address_id) echo '&nbsp;<small><i>' . PRIMARY_ADDRESS . '</i></small>'; ?></p>
<p><strong><?php echo tep_output_string_protected($addresses['firstname'] . ' ' . $addresses['lastname']); ?></strong><?php if ($addresses['address_book_id'] == $customer_default_address_id) echo '&nbsp;<small><i>' . PRIMARY_ADDRESS . '</i></small>'; ?></p>
<p style="padding-left: 20px;"><?php echo tep_address_format($format_id, $addresses, true, ' ', '<br />'); ?></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion catalog/admin/action_recorder.php
Expand Up @@ -186,7 +186,7 @@
switch ($action) {
default:
if (isset($aInfo) && is_object($aInfo)) {
$heading[] = array('text' => '<b>' . $aInfo->module . '</b>');
$heading[] = array('text' => '<strong>' . $aInfo->module . '</strong>');

$contents[] = array('text' => TEXT_INFO_IDENTIFIER . '<br /><br />' . (!empty($aInfo->identifier) ? '<a href="' . tep_href_link(FILENAME_ACTION_RECORDER, 'search=' . $aInfo->identifier) . '"><u>' . tep_output_string_protected($aInfo->identifier) . '</u></a>': '(empty)'));
$contents[] = array('text' => '<br />' . TEXT_INFO_DATE_ADDED . ' ' . tep_datetime_short($aInfo->date_added));
Expand Down
10 changes: 5 additions & 5 deletions catalog/admin/administrators.php
Expand Up @@ -306,7 +306,7 @@

switch ($action) {
case 'new':
$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_ADMINISTRATOR . '</b>');
$heading[] = array('text' => '<strong>' . TEXT_INFO_HEADING_NEW_ADMINISTRATOR . '</strong>');

$contents = array('form' => tep_draw_form('administrator', FILENAME_ADMINISTRATORS, 'action=insert', 'post', 'autocomplete="off"'));
$contents[] = array('text' => TEXT_INFO_INSERT_INTRO);
Expand All @@ -320,7 +320,7 @@
$contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_SAVE, 'disk', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_ADMINISTRATORS)));
break;
case 'edit':
$heading[] = array('text' => '<b>' . $aInfo->user_name . '</b>');
$heading[] = array('text' => '<strong>' . $aInfo->user_name . '</strong>');

$contents = array('form' => tep_draw_form('administrator', FILENAME_ADMINISTRATORS, 'aID=' . $aInfo->id . '&action=save', 'post', 'autocomplete="off"'));
$contents[] = array('text' => TEXT_INFO_EDIT_INTRO);
Expand All @@ -345,16 +345,16 @@
$contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_SAVE, 'disk', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_ADMINISTRATORS, 'aID=' . $aInfo->id)));
break;
case 'delete':
$heading[] = array('text' => '<b>' . $aInfo->user_name . '</b>');
$heading[] = array('text' => '<strong>' . $aInfo->user_name . '</strong>');

$contents = array('form' => tep_draw_form('administrator', FILENAME_ADMINISTRATORS, 'aID=' . $aInfo->id . '&action=deleteconfirm'));
$contents[] = array('text' => TEXT_INFO_DELETE_INTRO);
$contents[] = array('text' => '<br /><b>' . $aInfo->user_name . '</b>');
$contents[] = array('text' => '<br /><strong>' . $aInfo->user_name . '</strong>');
$contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_DELETE, 'trash', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_ADMINISTRATORS, 'aID=' . $aInfo->id)));
break;
default:
if (isset($aInfo) && is_object($aInfo)) {
$heading[] = array('text' => '<b>' . $aInfo->user_name . '</b>');
$heading[] = array('text' => '<strong>' . $aInfo->user_name . '</strong>');

$contents[] = array('align' => 'center', 'text' => tep_draw_button(IMAGE_EDIT, 'document', tep_href_link(FILENAME_ADMINISTRATORS, 'aID=' . $aInfo->id . '&action=edit')) . tep_draw_button(IMAGE_DELETE, 'trash', tep_href_link(FILENAME_ADMINISTRATORS, 'aID=' . $aInfo->id . '&action=delete')));
}
Expand Down
12 changes: 6 additions & 6 deletions catalog/admin/backup.php
Expand Up @@ -415,7 +415,7 @@

switch ($action) {
case 'backup':
$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_BACKUP . '</b>');
$heading[] = array('text' => '<strong>' . TEXT_INFO_HEADING_NEW_BACKUP . '</strong>');

$contents = array('form' => tep_draw_form('backup', FILENAME_BACKUP, 'action=backupnow'));
$contents[] = array('text' => TEXT_INFO_NEW_BACKUP);
Expand All @@ -433,13 +433,13 @@
$contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_BACKUP, 'copy', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_BACKUP)));
break;
case 'restore':
$heading[] = array('text' => '<b>' . $buInfo->date . '</b>');
$heading[] = array('text' => '<strong>' . $buInfo->date . '</strong>');

$contents[] = array('text' => tep_break_string(sprintf(TEXT_INFO_RESTORE, DIR_FS_BACKUP . (($buInfo->compression != TEXT_NO_EXTENSION) ? substr($buInfo->file, 0, strrpos($buInfo->file, '.')) : $buInfo->file), ($buInfo->compression != TEXT_NO_EXTENSION) ? TEXT_INFO_UNPACK : ''), 35, ' '));
$contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_RESTORE, 'arrowrefresh-1-w', tep_href_link(FILENAME_BACKUP, 'file=' . $buInfo->file . '&action=restorenow'), 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_BACKUP, 'file=' . $buInfo->file)));
break;
case 'restorelocal':
$heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_RESTORE_LOCAL . '</b>');
$heading[] = array('text' => '<strong>' . TEXT_INFO_HEADING_RESTORE_LOCAL . '</strong>');

$contents = array('form' => tep_draw_form('restore', FILENAME_BACKUP, 'action=restorelocalnow', 'post', 'enctype="multipart/form-data"'));
$contents[] = array('text' => TEXT_INFO_RESTORE_LOCAL . '<br /><br />' . TEXT_INFO_BEST_THROUGH_HTTPS);
Expand All @@ -448,16 +448,16 @@
$contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_RESTORE, 'arrowrefresh-1-w', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_BACKUP)));
break;
case 'delete':
$heading[] = array('text' => '<b>' . $buInfo->date . '</b>');
$heading[] = array('text' => '<strong>' . $buInfo->date . '</strong>');

$contents = array('form' => tep_draw_form('delete', FILENAME_BACKUP, 'file=' . $buInfo->file . '&action=deleteconfirm'));
$contents[] = array('text' => TEXT_DELETE_INTRO);
$contents[] = array('text' => '<br /><b>' . $buInfo->file . '</b>');
$contents[] = array('text' => '<br /><strong>' . $buInfo->file . '</strong>');
$contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_DELETE, 'trash', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_BACKUP, 'file=' . $buInfo->file)));
break;
default:
if (isset($buInfo) && is_object($buInfo)) {
$heading[] = array('text' => '<b>' . $buInfo->date . '</b>');
$heading[] = array('text' => '<strong>' . $buInfo->date . '</strong>');

$contents[] = array('align' => 'center', 'text' => tep_draw_button(IMAGE_RESTORE, 'arrowrefresh-1-w', tep_href_link(FILENAME_BACKUP, 'file=' . $buInfo->file . '&action=restore')) . tep_draw_button(IMAGE_DELETE, 'trash', tep_href_link(FILENAME_BACKUP, 'file=' . $buInfo->file . '&action=delete')));
$contents[] = array('text' => '<br />' . TEXT_INFO_DATE . ' ' . $buInfo->date);
Expand Down
6 changes: 3 additions & 3 deletions catalog/admin/banner_manager.php
Expand Up @@ -377,17 +377,17 @@ function popupImageWindow(url) {
$contents = array();
switch ($action) {
case 'delete':
$heading[] = array('text' => '<b>' . $bInfo->banners_title . '</b>');
$heading[] = array('text' => '<strong>' . $bInfo->banners_title . '</strong>');

$contents = array('form' => tep_draw_form('banners', FILENAME_BANNER_MANAGER, 'page=' . $HTTP_GET_VARS['page'] . '&bID=' . $bInfo->banners_id . '&action=deleteconfirm'));
$contents[] = array('text' => TEXT_INFO_DELETE_INTRO);
$contents[] = array('text' => '<br /><b>' . $bInfo->banners_title . '</b>');
$contents[] = array('text' => '<br /><strong>' . $bInfo->banners_title . '</strong>');
if ($bInfo->banners_image) $contents[] = array('text' => '<br />' . tep_draw_checkbox_field('delete_image', 'on', true) . ' ' . TEXT_INFO_DELETE_IMAGE);
$contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_DELETE, 'trash', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_BANNER_MANAGER, 'page=' . $HTTP_GET_VARS['page'] . '&bID=' . $HTTP_GET_VARS['bID'])));
break;
default:
if (is_object($bInfo)) {
$heading[] = array('text' => '<b>' . $bInfo->banners_title . '</b>');
$heading[] = array('text' => '<strong>' . $bInfo->banners_title . '</strong>');

$contents[] = array('align' => 'center', 'text' => tep_draw_button(IMAGE_EDIT, 'document', tep_href_link(FILENAME_BANNER_MANAGER, 'page=' . $HTTP_GET_VARS['page'] . '&bID=' . $bInfo->banners_id . '&action=new')) . tep_draw_button(IMAGE_DELETE, 'trash', tep_href_link(FILENAME_BANNER_MANAGER, 'page=' . $HTTP_GET_VARS['page'] . '&bID=' . $bInfo->banners_id . '&action=delete')) . tep_draw_button(IMAGE_DETAILS, 'info', tep_href_link(FILENAME_BANNER_STATISTICS, 'page=' . $HTTP_GET_VARS['page'] . '&bID=' . $bInfo->banners_id)));
$contents[] = array('text' => '<br />' . TEXT_BANNERS_DATE_ADDED . ' ' . tep_date_short($bInfo->date_added));
Expand Down

0 comments on commit cfa20b6

Please sign in to comment.