Skip to content

Commit

Permalink
Issue ID 0000429:
Browse files Browse the repository at this point in the history
Fix Line too long cf coding convention



git-svn-id: http://piwigo.org/svn/trunk@1412 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
rub committed Jun 28, 2006
1 parent 10e9114 commit be4c4b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion include/common.inc.php
Expand Up @@ -190,7 +190,13 @@
// 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
Expand Down
3 changes: 2 additions & 1 deletion include/config_default.inc.php
Expand Up @@ -489,7 +489,8 @@
// Step 1, default_admin_layout is not defined
// null value, user_layout is used for admin layout
// defined value, this value are used for admin layout
// Next on step, default_admin_layout will be used if the ara not checkeg admin layout
// Next on step 2, default_admin_layout will be used
// if there are not checked like admin layout
// stored on user informations
//$conf['default_admin_layout']='yoga/dark';

Expand Down

0 comments on commit be4c4b3

Please sign in to comment.