Skip to content

Commit

Permalink
Fixed a bug created from previous commit
Browse files Browse the repository at this point in the history
git-svn-id: http://joomlacode.org/svn/joomla/development/trunk@4922 6f6e1ebd-4c2b-0410-823f-f34bde69bce9
  • Loading branch information
eddieajau committed Sep 4, 2006
1 parent 2f1af0a commit 275c17f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions installation/index.php
Expand Up @@ -28,9 +28,7 @@
$postVars = JArrayHelper::getValue( $post, 'vars', array(), 'array' );
$registry =& JSession::get('registry');

// TODO: Louis, loadArray only ever goes into the default namespace??
//$registry->loadArray($postVars, 'application');
$registry->loadArray($postVars);
$registry->loadArray($postVars, 'application');

$configLang = $mainframe->getUserState('application.lang');

Expand All @@ -42,8 +40,7 @@
$lang->_load( JPATH_BASE . '/language/' . $configLang . '/' . $configLang .'.ini' );

$task = JRequest::getVar( 'task' );
//$vars = $registry->toArray('application');
$vars = $registry->toArray();
$vars = $registry->toArray('application');
$result = '';

switch ($task)
Expand Down

0 comments on commit 275c17f

Please sign in to comment.