Merged revisions 4060-4063 via svnmerge from

svn+ssh://danydb@svn/svn/phpcompta/branches/rel550

........
  r4060 | danydb | 2011-03-31 00:56:29 +0200 (Thu, 31 Mar 2011) | 2 lines
  
  fix problem with password reinit
........
  r4061 | danydb | 2011-04-05 22:23:36 +0200 (Tue, 05 Apr 2011) | 2 lines
  
  fix problem with act2
........
  r4062 | danydb | 2011-04-05 22:34:13 +0200 (Tue, 05 Apr 2011) | 2 lines
  
  #248 Fix problem with payment with sales 
........
  r4063 | danydb | 2011-04-06 18:25:05 +0200 (Wed, 06 Apr 2011) | 2 lines
  
  #247 Bug in invoice generating
........
This commit is contained in:
Dany De Bontridder 2011-04-07 20:55:33 +00:00
parent 7614caceb2
commit 440e736f31
3 changed files with 4 additions and 4 deletions

View file

@ -75,7 +75,7 @@ if ( isset ( $_GET['reset_passwd']) )
/* prevent to change the password of superadmin */
if ( $uid != '1' )
{
$Res=$cn->exec_sql( "update ac_users set use_pass='$1' where use_id=$2",array($l_pass,$uid));
$Res=$cn->exec_sql( "update ac_users set use_pass=$1 where use_id=$2",array($l_pass,$uid));
echo '<H2 class="info"> Password remis à phpcompta</H2>';
}
}