aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/functions_category.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_category.inc.php b/include/functions_category.inc.php
index 30abdd271..47db0e75f 100644
--- a/include/functions_category.inc.php
+++ b/include/functions_category.inc.php
@@ -599,7 +599,7 @@ SELECT COUNT(DISTINCT(id)) AS nb_total_images
$page['title'] = $lang['recent_pics_cat_title'];
// We must find the date corresponding to :
// today - $conf['periode_courte']
- $date = time() - 60*60*24*$user['short_period'];
+ $date = time() - 60*60*24*$user['recent_period'];
$page['where'] = " WHERE date_available > '";
$page['where'].= date( 'Y-m-d', $date )."'";
if ( isset( $forbidden ) ) $page['where'].= ' AND '.$forbidden;