Quick Search:

View

Revision:

Diff

Diff from 978 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/osCommerce/tags/oscommerce-3.0a3/info.php

Annotated File View

hpdl
186
1 <?php
2 /*
3   $Id: account.php 65 2005-03-12 16:43:41Z hpdl $
4
5   osCommerce, Open Source E-Commerce Solutions
6   http://www.oscommerce.com
7
8   Copyright (c) 2005 osCommerce
9
10   Released under the GNU General Public License
11 */
12
hpdl
824
13   $_SERVER['SCRIPT_FILENAME'] = __FILE__;
14
hpdl
186
15   require('includes/application_top.php');
16
hpdl
410
17   $osC_Language->load('info');
hpdl
186
18
19   if ($osC_Services->isStarted('breadcrumb')) {
hpdl
754
20     $breadcrumb->add($osC_Language->get('breadcrumb_information'), osc_href_link(FILENAME_INFO));
hpdl
186
21   }
22
hpdl
322
23   $osC_Template = osC_Template::setup('info');
hpdl
186
24
hpdl
352
25   require('templates/' . $osC_Template->getCode() . '.php');
hpdl
186
26
27   require('includes/application_bottom.php');
28 ?>