public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
Search Repo:
BUGFIX: fixed syntax error causing fatal error on admin/login.php

git-svn-id: http://svn.cmsmadesimple.org/svn/cmsmadesimple/trunk@3313 
3d254a34-79dc-0310-9e5f-be208747d8a0
dittmann (author)
Tue Aug 15 18:16:14 -0700 2006
commit  c58dcdafe050095bfc4edf709de45647e5bbe903
tree    e1cec27d6cb0e64a38882f6d102618053e98b87e
parent  015490617a3c77c55cf677f9c07b136dab1e73dd
...
54
55
56
57
 
58
59
60
...
54
55
56
 
57
58
59
60
0
@@ -54,7 +54,7 @@ if (isset($_POST["username"]) && isset($_POST["password"])) {
0
   if (isset($_POST["username"])) $username = cleanValue($_POST["username"]);
0
 
0
   $password = "";
0
- if (isset($_POST["password"])) $password = ($_POST["password"];
0
+ if (isset($_POST["password"])) $password = $_POST["password"];
0
 
0
   $oneuser = UserOperations::LoadUserByUsername($username, $password, true, true);
0
   

Comments

    No one has commented yet.