diff options
author | rvelices <rv-github@modusoptimus.com> | 2012-02-18 20:46:46 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2012-02-18 20:46:46 +0000 |
commit | a8938827898ed40d35f25b055a72a41a2c1567ef (patch) | |
tree | 4faaa2424bf609938dd526dc6c99cae8d25fdbf7 /include/section_init.inc.php | |
parent | 3ef9e856c36e7b7b8530beb52c8667945a645cad (diff) |
- multisize thumb longest side can be smaller than the square size
- remove unused css, shorten/optimize php called very often (at least theoretically should be faster)
git-svn-id: http://piwigo.org/svn/trunk@13240 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/section_init.inc.php')
-rw-r--r-- | include/section_init.inc.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/section_init.inc.php b/include/section_init.inc.php index 71b53025a..fa51fa7fc 100644 --- a/include/section_init.inc.php +++ b/include/section_init.inc.php @@ -64,10 +64,14 @@ else // the $_GET keys are not protected in include/common.inc.php, only the values $rewritten = pwg_db_real_escape_string($rewritten); - $page['root_path'] = PHPWG_ROOT_PATH; } +if ( strncmp($page['root_path'], './', 2) == 0 ) +{ + $page['root_path'] = substr($page['root_path'], 2); +} + // deleting first "/" if displayed $tokens = explode('/', ltrim($rewritten, '/') ); // $tokens = array( |