[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb: [884] branches/1.2/bin/am.pl



Revision: 884
          http://svn.sourceforge.net/ledger-smb/?rev=884&view=rev
Author:   einhverfr
Date:     2007-03-12 09:23:09 -0700 (Mon, 12 Mar 2007)

Log Message:
-----------
Adding quotes to bin/am.pl to avoid password problems

Modified Paths:
--------------
    branches/1.2/bin/am.pl

Modified: branches/1.2/bin/am.pl
===================================================================
--- branches/1.2/bin/am.pl	2007-03-11 01:43:29 UTC (rev 883)
+++ branches/1.2/bin/am.pl	2007-03-12 16:23:09 UTC (rev 884)
@@ -2092,9 +2092,9 @@
 
 <form method=post action=$form->{script}>
 
-<input type=hidden name=old_password value=$myconfig{password}>
+<input type=hidden name=old_password value="$myconfig{password}">
 <input type=hidden name=type value=preferences>
-<input type=hidden name=role value=$myconfig{role}>
+<input type=hidden name=role value="$myconfig{role}">
 
 <table width=100%>
   <tr><th class=listtop>$form->{title}</th></tr>
@@ -2138,7 +2138,7 @@
 	    <table>
 	      <tr>
 		<th align="right">|.$locale->text('Password').qq|</th>
-		<td><input type=password name=new_password size=10 value=$myconfig{password}></td>
+		<td><input type=password name=new_password size=10 value="$myconfig{password}"></td>
 	      </tr>
 	      <tr>
 		<th align="right">|.$locale->text('Confirm').qq|</th>


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.