forked from osCommerce/oscommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
30 lines (20 loc) · 791 Bytes
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/*
$Id: account.php 65 2005-03-12 16:43:41Z hpdl $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2005 osCommerce
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License v2 (1991)
as published by the Free Software Foundation.
*/
$_SERVER['SCRIPT_FILENAME'] = __FILE__;
require('includes/application_top.php');
$osC_Language->load('search');
if ($osC_Services->isStarted('breadcrumb')) {
$osC_Breadcrumb->add($osC_Language->get('breadcrumb_search'), osc_href_link(FILENAME_SEARCH));
}
$osC_Template = osC_Template::setup('search');
require('templates/' . $osC_Template->getCode() . '.php');
require('includes/application_bottom.php');
?>