aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-02-10 23:09:37 +0000
committerrub <rub@piwigo.org>2007-02-10 23:09:37 +0000
commite79d03c1fcabffa1cf58146decd03d8dfb5e0855 (patch)
treeea7217a40f231e962015d35d01f12e90f6bf4b16 /include
parent67a803676819d204a47383031e7312df44263432 (diff)
Replace all flat_cat by flat.
git-svn-id: http://piwigo.org/svn/trunk@1800 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/functions_url.inc.php2
-rw-r--r--include/section_init.inc.php16
2 files changed, 9 insertions, 9 deletions
diff --git a/include/functions_url.inc.php b/include/functions_url.inc.php
index b95284746..4f9b15b4b 100644
--- a/include/functions_url.inc.php
+++ b/include/functions_url.inc.php
@@ -269,7 +269,7 @@ function add_well_known_params_in_url($url, $params)
}
}
- if (isset($params['flat_cat']))
+ if (isset($params['flat']))
{
$url.= '/flat';
}
diff --git a/include/section_init.inc.php b/include/section_init.inc.php
index 869bb34b8..399347659 100644
--- a/include/section_init.inc.php
+++ b/include/section_init.inc.php
@@ -275,7 +275,7 @@ else
case 'picture':
{
//access a picture only by id, file or id-file without given section
- $page['flat_cat'] = true;
+ $page['flat'] = true;
break;
}
case 'index':
@@ -314,7 +314,7 @@ while (isset($tokens[$i]))
'flat' == $tokens[$i])
{
// indicate a special list of images
- $page['flat_cat'] = true;
+ $page['flat'] = true;
}
if (preg_match('/^(posted|created)/', $tokens[$i] ))
@@ -396,7 +396,7 @@ if ('categories' == $page['section'])
'title' =>
get_cat_display_name($result['name'], '', false),
'thumbnails_include' =>
- (($result['nb_images'] > 0) or (isset($page['flat_cat'])))
+ (($result['nb_images'] > 0) or (isset($page['flat'])))
? 'include/category_default.inc.php'
: 'include/category_cats.inc.php'
)
@@ -406,12 +406,12 @@ if ('categories' == $page['section'])
{
$page['title'] = $lang['no_category'];
$page['thumbnails_include'] =
- (isset($page['flat_cat']))
+ (isset($page['flat']))
? 'include/category_default.inc.php'
: 'include/category_cats.inc.php';
}
- if (isset($page['flat_cat']))
+ if (isset($page['flat']))
{
$page['title'] = $lang['recent_pics_cat'].' : '.$page['title'] ;
}
@@ -421,7 +421,7 @@ if ('categories' == $page['section'])
(!isset($page['chronology_field'])) and
(
(isset($page['category'])) or
- (isset($page['flat_cat']))
+ (isset($page['flat']))
)
)
{
@@ -430,7 +430,7 @@ if ('categories' == $page['section'])
$conf[ 'order_by' ] = ' ORDER BY '.$result['image_order'];
}
- if (isset($page['flat_cat']))
+ if (isset($page['flat']))
{
// flat recent categories mode
$query = '
@@ -742,7 +742,7 @@ SELECT id,file
// add meta robots noindex, nofollow to avoid unnecesary robot crawls
$page['meta_robots']=array();
-if ( isset($page['chronology_field']) or isset($page['flat_cat'])
+if ( isset($page['chronology_field']) or isset($page['flat'])
or 'list'==$page['section'] or 'recent_pics'==$page['section'] )
{
$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);