Register goes smarty.

Correction in profile.php (forgotten assign_var)

git-svn-id: http://piwigo.org/svn/trunk@2247 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
patdenice
2008-03-03 17:49:52 +00:00
parent 5693f3e28b
commit 07abd206ce
3 changed files with 23 additions and 27 deletions
+3 -7
View File
@@ -75,7 +75,7 @@ $page['body_id'] = 'theRegisterPage';
include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames( array('register'=>'register.tpl') );
$template->assign_vars(array(
$template->assign(array(
'U_HOME' => make_index_url(),
'F_ACTION' => 'register.php',
@@ -84,13 +84,9 @@ $template->assign_vars(array(
));
//-------------------------------------------------------------- errors display
if ( sizeof( $errors ) != 0 )
if (count($errors) != 0)
{
$template->assign_block_vars('errors',array());
for ( $i = 0; $i < sizeof( $errors ); $i++ )
{
$template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i]));
}
$template->assign('errors', $errors);
}
$template->parse('register');