diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-05-02 23:07:14 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-05-02 23:07:14 +0000 |
commit | e54bca5449c2e86ed05e59b04c827b0abaab33f6 (patch) | |
tree | ce9e00be6d6ed448b317044a31e229d098c7ba2c | |
parent | 4e778d238ff476f7505fec015cd4101eaab18e6a (diff) |
correct bug on one of my previous commits (flat for picture page)
git-svn-id: http://piwigo.org/svn/trunk@1996 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/section_init.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/section_init.inc.php b/include/section_init.inc.php index 84e7a83b5..918d394fd 100644 --- a/include/section_init.inc.php +++ b/include/section_init.inc.php @@ -162,7 +162,7 @@ $page = array_merge( $page, parse_well_known_params_url( $tokens, $next_token) ) if ( script_basename()=='picture' and 'categories'==$page['section'] and - !isset($page['chronology_field']) ) + !isset($page['category']) and !isset($page['chronology_field']) ) { //access a picture only by id, file or id-file without given section $page['flat']=true; } |