Skip to content

Commit

Permalink
use get() instend of getCfg
Browse files Browse the repository at this point in the history
  • Loading branch information
zero-24 committed Apr 16, 2014
1 parent 88d4e2d commit 2746be0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions administrator/templates/isis/login.php
Expand Up @@ -36,7 +36,7 @@
$layout = $app->input->getCmd('layout', '');
$task = $app->input->getCmd('task', '');
$itemid = $app->input->getCmd('Itemid', '');
$sitename = $app->getCfg('sitename');
$sitename = $app->get('sitename');

?>
<!DOCTYPE html>
Expand Down Expand Up @@ -64,7 +64,7 @@
}
}
<?php // Check if debug is on ?>
<?php if ($app->getCfg('debug_lang') == '1' or $app->getCfg('debug') == '1') : ?>
<?php if ($app->get('debug_lang') == '1' or $app->get('debug') == '1') : ?>
.view-login .container {
position: static;
margin-top: 20px;
Expand Down

0 comments on commit 2746be0

Please sign in to comment.