Commit b042f2515b50f6d481cfc40c32e767980a25e9bb

Authored by michael
1 parent b2b3d5e8

updated auth test


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@845 c91229c3-7414-0410-bfa2-8a42b809f60b
tests/authentication/authentication.php
... ... @@ -45,6 +45,6 @@ if (checkSession()) {
45 45 // user credentials to authenticate
46 46 $sUserName = "michael";
47 47 $sPassword = "pass123";
48   - echo "<ul><li>Authenticating ($sUserName, $sPassword) : " . $oLdapAuth->checkPass($sUserName, $sPassword) . "</li></ul>";
  48 + echo "<ul><li>Authenticating ($sUserName, $sPassword) : " . ($oLdapAuth->checkPassword($sUserName, $sPassword) ? "true" : "false") . "</li></ul>";
49 49 }
50 50 ?>
... ...