Issue ID 0000429:

Fix Line too long cf coding convention

Merge BSF r1411:1412 into branch-1_6

git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1413 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub
2006-06-28 21:36:05 +00:00
parent 6d3b4bda28
commit 7a929a9171
2 changed files with 9 additions and 2 deletions
+7 -1
View File
@@ -190,7 +190,13 @@ if ($user['is_the_guest'])
// include template/theme configuration
if (defined('IN_ADMIN') and IN_ADMIN)
{
list($user['template'], $user['theme']) = explode('/', isset($conf['default_admin_layout']) ? $conf['default_admin_layout'] : $user['template']);
list($user['template'], $user['theme']) =
explode
(
'/',
isset($conf['default_admin_layout']) ? $conf['default_admin_layout']
: $user['template']
);
// TODO : replace $conf['admin_layout'] by $user['admin_layout']
}
else