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 authored and wilsonge committed Apr 23, 2014
1 parent 11b4e56 commit 6eec85b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions administrator/templates/isis/login.php
Original file line number Diff line number Diff line change
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 6eec85b

Please sign in to comment.