aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-03-28 02:16:34 +0000
committerrvelices <rv-github@modusoptimus.com>2006-03-28 02:16:34 +0000
commit8b3328e7ed8ae8936ce816b2eed69b422381d30b (patch)
tree3d708e73b9435a37edf1e307f4586db35eea04b3 /index.php
parent2ea96d5a96abfdacec319836051070f9016d7b95 (diff)
moved category.php to index.php
split url functions from functions.inc.php to functions_url.inc.php git-svn-id: http://piwigo.org/svn/trunk@1109 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--index.php (renamed from category.php)4
1 files changed, 2 insertions, 2 deletions
diff --git a/category.php b/index.php
index 36e039bed..937cff75a 100644
--- a/category.php
+++ b/index.php
@@ -108,7 +108,7 @@ $title = $page['title'];
$page['body_id'] = 'theCategoryPage';
include(PHPWG_ROOT_PATH.'include/page_header.php');
-$template->set_filenames( array('category'=>'category.tpl') );
+$template->set_filenames( array('index'=>'index.tpl') );
//-------------------------------------------------------------- category title
if (isset($page['category']))
{
@@ -482,6 +482,6 @@ if (isset($page['category']))
//------------------------------------------------------------ log informations
pwg_log('category', $page['title']);
-$template->parse('category');
+$template->parse('index');
include(PHPWG_ROOT_PATH.'include/page_tail.php');
?>