aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_user.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2008-11-04 01:46:17 +0000
committerrvelices <rv-github@modusoptimus.com>2008-11-04 01:46:17 +0000
commit43b7a7e8726997f60dba12d54aaddef092dd7f6e (patch)
treee87b798c0ebe1078363b365ee5859444934edd8b /include/functions_user.inc.php
parent17334bdba335cba27b747dbacb5f8bef92e2f957 (diff)
- removed some unused constants from constants.php
- removed some unused css rules - removed unused code git-svn-id: http://piwigo.org/svn/branches/2.0@2823 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_user.inc.php')
-rw-r--r--include/functions_user.inc.php15
1 files changed, 1 insertions, 14 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php
index 074a8aae9..7681e49cd 100644
--- a/include/functions_user.inc.php
+++ b/include/functions_user.inc.php
@@ -211,12 +211,6 @@ function build_user( $user_id, $use_cache )
// calculation of the number of picture to display per page
$user['nb_image_page'] = $user['nb_image_line'] * $user['nb_line_page'];
- if (is_admin($user['status']))
- {
- list($user['admin_template'], $user['admin_theme']) =
- explode ('/', $conf['admin_layout']);
- }
-
list($user['template'], $user['theme']) = explode('/', $user['template']);
return $user;
@@ -1373,14 +1367,7 @@ function get_sql_condition_FandF(
}
else
{
- if ($force_one_condition)
- {
- $sql = '1 = 1';
- }
- else
- {
- $sql = '';
- }
+ $sql = $force_one_condition ? '1 = 1' : '';
}
if (isset($prefix_condition) and !empty($sql))