diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-02-08 01:31:05 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-02-08 01:31:05 +0000 |
commit | b6fc0fa5eb94301d5611b5385371aeda821da0fe (patch) | |
tree | 6571c02ac29d5e99ab747f48d97c62b5cde4ec46 /include/functions_url.inc.php | |
parent | 5631a3fc545bd736cb4b82a93fa7d2b48814973c (diff) |
- correct php warnings (section_init and mass_inserts)
- flat category view url is now 'flat' instead of 'flat_cat' (it is nicer and shorter)
- small html validation (double class attribute)
- removed unnecessary class=""
- changed 2 times hard coded index.php?recent_pics with make_index_url(...)
git-svn-id: http://piwigo.org/svn/trunk@1789 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_url.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/functions_url.inc.php b/include/functions_url.inc.php index 2a567e8c5..b95284746 100644 --- a/include/functions_url.inc.php +++ b/include/functions_url.inc.php @@ -1,10 +1,10 @@ <?php // +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | -// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net | +// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | branch : BSF (Best So Far) -// | file : $RCSfile$ +// | file : $Id$ // | last update : $Date$ // | last modifier : $Author$ // | revision : $Revision$ @@ -271,7 +271,7 @@ function add_well_known_params_in_url($url, $params) if (isset($params['flat_cat'])) { - $url.= '/flat_cat'; + $url.= '/flat'; } if (isset($params['start']) and $params['start'] > 0) |