Skip to content

Commit 3be8b5f

Browse files
committed
Merge pull request #2 from osCommerce/master
Merge
2 parents fe28b9b + bc89a3f commit 3be8b5f

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

catalog/admin/modules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
$module_type = $cfgModules->get($set, 'code');
2424
$module_directory = $cfgModules->get($set, 'directory');
2525
$module_language_directory = $cfgModules->get($set, 'language_directory');
26-
$module_key = $cfgModules->get($set, 'key');;
26+
$module_key = $cfgModules->get($set, 'key');
2727
define('HEADING_TITLE', $cfgModules->get($set, 'title'));
2828
$template_integration = $cfgModules->get($set, 'template_integration');
2929

catalog/custom.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/* DO NOT CHANGE THIS FILE -------------------------------------------------- */
2+
/* TO OVER-RIDE ANY ASPECT OF THIS CSS, AMEND THE user.css FILE ------------- */
3+

catalog/includes/template_top.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@
5656

5757
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
5858

59+
<!-- Custom -->
60+
<link href="custom.css" rel="stylesheet">
61+
<!-- Custom -->
62+
<link href="user.css" rel="stylesheet">
63+
5964
<?php echo $oscTemplate->getBlocks('header_tags'); ?>
6065
</head>
6166
<body>

catalog/product_info.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?>
6060

6161
<div class="page-header">
62-
<h1 class="pull-right><?php echo $products_price; ?></h1>
62+
<h1 class="pull-right"><?php echo $products_price; ?></h1>
6363
<h1><?php echo $products_name; ?></h1>
6464
</div>
6565

catalog/user.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/* FOR USER CHANGES TO THE BASE CSS ----------------------------------------- */
2+

0 commit comments

Comments
 (0)