Changeset 1172
- Timestamp:
- 08/26/08 12:34:18 (3 months ago)
- Files:
-
- 5100R/trunk/ui/base-vsite.mod/Makefile (modified) (1 diff)
- 5100R/trunk/ui/base-vsite.mod/templates/rpmdefs.tmpl (modified) (1 diff)
- 5100R/trunk/ui/base-vsite.mod/ui/web/manageAdmin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
5100R/trunk/ui/base-vsite.mod/Makefile
r1171 r1172 8 8 9 9 VERSION=1.0 10 RELEASE=132BQ3 510 RELEASE=132BQ36 11 11 12 12 # add a buildarch if desired 5100R/trunk/ui/base-vsite.mod/templates/rpmdefs.tmpl
r1171 r1172 123 123 124 124 <begin $CHANGELOG> 125 * Tue Aug 26 2008 Michael Stauber <mstauber@solarspeed.net> 1.0-132BQ36 126 - Small update in manageAdmin.php 127 - Now uses strcasecmp() to check if password equals username in upper and lower case. 128 125 129 * Sat Aug 23 2008 Hisao SHIBUYA <shibuya@bluequartz.org> 1.0-132BQ35 126 130 - use cracklib to check password. 5100R/trunk/ui/base-vsite.mod/ui/web/manageAdmin.php
r1171 r1172 197 197 // Check password 198 198 // Username = Password? Baaaad idea! 199 if ( $userName == $password) {199 if (strcasecmp($userName, $password) == 0) { 200 200 $attributes["password"] = "1"; 201 201 $error_msg = "[[base-user.error-password-equals-username]] [[base-user.error-invalid-password]]";
