1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-29 10:38:08 +01:00

Bugtracker #4628 - reshow posted field properly" usersettings.php

Committed on the Free edition of March Hare Software CVSNT Server.
Upgrade to CVS Suite for more features and support:
http://march-hare.com/cvsnt/
This commit is contained in:
mcfly 2008-12-21 03:58:07 +00:00
parent 7738166f21
commit 7b18c841bb

View File

@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/usersettings.php,v $
| $Revision: 1.27 $
| $Date: 2008-12-10 16:37:17 $
| $Revision: 1.28 $
| $Date: 2008-12-21 03:58:07 $
| $Author: mcfly_e107 $
+----------------------------------------------------------------------------+
@ -801,11 +801,11 @@ if ($_POST)
// (Password fields have intentionally been cleared). If no error, there's an unset($_POST) to disable this block
foreach ($_POST as $key => $val)
{
$curVal['user_'.$key] = $val;
$curVal['user_'.$key] = $tp->post_toForm($val);
}
foreach ($_POST['ue'] as $key => $val)
{
$curVal[$key] = $val;
$curVal[$key] = $to->post_toForm($val);
}
}