From be7831805e640cff187efb92f94ea141dafb82b4 Mon Sep 17 00:00:00 2001 From: pete Date: Fri, 13 Feb 2009 17:20:15 +0000 Subject: css classname cleanup, prep for v1.5 default theme git-svn-id: https://code.elgg.org/elgg/trunk@2749 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/admin/plugins.php | 16 ++++++++-------- views/default/admin/site.php | 4 +++- views/default/admin/statistics.php | 8 +++----- views/default/admin/user.php | 2 +- views/default/usersettings/form.php | 4 ++-- views/default/usersettings/plugins.php | 2 +- 6 files changed, 18 insertions(+), 18 deletions(-) (limited to 'views') diff --git a/views/default/admin/plugins.php b/views/default/admin/plugins.php index fc044f128..fb319d436 100644 --- a/views/default/admin/plugins.php +++ b/views/default/admin/plugins.php @@ -12,7 +12,7 @@ */ // Description of what's going on - echo "

" . autop(elgg_echo("admin:plugins:description")) . "

"; + echo "
" . autop(elgg_echo("admin:plugins:description")) . "
"; $limit = get_input('limit', 10); $offset = get_input('offset', 0); @@ -21,11 +21,11 @@ // Get the installed plugins $installed_plugins = $vars['installed_plugins']; $count = count($installed_plugins); - - $plugin_list = get_plugin_list(); - $max = 0; - foreach($plugin_list as $key => $foo) - if ($key > $max) $max = $key; + + $plugin_list = get_plugin_list(); + $max = 0; + foreach($plugin_list as $key => $foo) + if ($key > $max) $max = $key; // Display list of plugins $n = 0; @@ -37,7 +37,7 @@ $n++; } - // Diplay nav + // Diplay nav /* if ($count) { @@ -46,6 +46,6 @@ 'offset' => $offset, 'count' => $count, )); - } + } */ ?> \ No newline at end of file diff --git a/views/default/admin/site.php b/views/default/admin/site.php index 080a35b9d..020b72b59 100644 --- a/views/default/admin/site.php +++ b/views/default/admin/site.php @@ -14,7 +14,9 @@ global $CONFIG; // Description of what's going on - echo "

" . autop(elgg_echo("admin:site:description")) . "

"; + echo "
" . autop(elgg_echo("admin:site:description")) . " "; echo elgg_view("settings/system",array("action" => $CONFIG->wwwroot."action/admin/site/update_basic")); // Always want to do this first. + + echo "
"; ?> \ No newline at end of file diff --git a/views/default/admin/statistics.php b/views/default/admin/statistics.php index 75ece8eb1..7bc3bca6e 100644 --- a/views/default/admin/statistics.php +++ b/views/default/admin/statistics.php @@ -11,12 +11,10 @@ */ global $CONFIG; - - // echo "

" . autop(elgg_echo("admin:statistics:description")) . "

"; - + ?> - \ No newline at end of file + \ No newline at end of file diff --git a/views/default/admin/user.php b/views/default/admin/user.php index 75bc74b82..a648789aa 100644 --- a/views/default/admin/user.php +++ b/views/default/admin/user.php @@ -12,7 +12,7 @@ */ // Description of what's going on - echo "

" . autop(elgg_echo("admin:user:description")) . "

"; + echo "
" . autop(elgg_echo("admin:user:description")) . "
"; echo elgg_view("admin/user_opt/adduser"); diff --git a/views/default/usersettings/form.php b/views/default/usersettings/form.php index 509146162..0d47355af 100644 --- a/views/default/usersettings/form.php +++ b/views/default/usersettings/form.php @@ -1,7 +1,7 @@ " . elgg_view("usersettings/user") . ""; - $form_body .= "

" . elgg_view('input/submit', array('value' => elgg_echo('save'))) . "

"; + $form_body = "
" . elgg_view("usersettings/user") . " "; + $form_body .= "

" . elgg_view('input/submit', array('value' => elgg_echo('save'))) . "

"; echo elgg_view('input/form', array('action' => "{$vars['url']}action/usersettings/save", 'body' => $form_body)); ?> \ No newline at end of file diff --git a/views/default/usersettings/plugins.php b/views/default/usersettings/plugins.php index 52fb6b80d..6573766f7 100644 --- a/views/default/usersettings/plugins.php +++ b/views/default/usersettings/plugins.php @@ -11,7 +11,7 @@ */ // Description of what's going on - echo "

" . autop(elgg_echo("usersettings:plugins:description")) . "

"; + echo "
" . autop(elgg_echo("usersettings:plugins:description")) . "
"; $limit = get_input('limit', 10); $offset = get_input('offset', 0); -- cgit v1.2.3