diff options
Diffstat (limited to 'views/default/page/default.php')
| -rw-r--r-- | views/default/page/default.php | 12 | 
1 files changed, 8 insertions, 4 deletions
| diff --git a/views/default/page/default.php b/views/default/page/default.php index 892069fad..567494d0c 100644 --- a/views/default/page/default.php +++ b/views/default/page/default.php @@ -14,7 +14,9 @@  // backward compatability support for plugins that are not using the new approach  // of routing through admin. See reportedcontent plugin for a simple example.  if (elgg_get_context() == 'admin') { -	elgg_deprecated_notice("admin plugins should route through 'admin'.", 1.8); +	if (get_input('handler') != 'admin') { +		elgg_deprecated_notice("admin plugins should route through 'admin'.", 1.8); +	}  	elgg_admin_add_plugin_settings_menu();  	elgg_unregister_css('elgg');  	echo elgg_view('page/admin', $vars); @@ -31,9 +33,11 @@ $footer = elgg_view('page/elements/footer', $vars);  // Set the content type  header("Content-type: text/html; charset=UTF-8"); +$lang = get_current_language(); +  ?>  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang; ?>" lang="<?php echo $lang; ?>">  <head>  <?php echo elgg_view('page/elements/head', $vars); ?>  </head> @@ -43,13 +47,13 @@ header("Content-type: text/html; charset=UTF-8");  		<?php echo $messages; ?>  	</div> -	<?php if (elgg_is_logged_in()): ?> +	<?php if (elgg_is_logged_in()){ ?>  	<div class="elgg-page-topbar">  		<div class="elgg-inner">  			<?php echo $topbar; ?>  		</div>  	</div> -	<?php endif; ?> +	<?php } ?>  	<div class="elgg-page-header">  		<div class="elgg-inner"> | 
