Commit: 95f4f5a0ba20da1c1d0aa15294bfaa6c382cdaa1 Author: Sobak <[email protected]> Sun, 6 Jul 2014 08:33:48 +0200 Parents: ec6f0cd0fdac333749f8475b2580e5c2f8fee74d Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=95f4f5a0ba20da1c1d0aa15294bfaa6c382cdaa1 Log: Fixed bug #67006 (login form in developer's section doesn't work) Bugs: https://bugs.php.net/67006 Changed paths: M www/bug.php M www/fix.php Diff: diff --git a/www/bug.php b/www/bug.php index 1fb3aa2..56934c7 100644 --- a/www/bug.php +++ b/www/bug.php @@ -815,7 +815,7 @@ if ($edit == 1 || $edit == 2) { ?> <label for="svnuser">php.net Username:</label> <input type="text" id="svnuser" name="user" value="<?php echo htmlspecialchars($user); ?>" size="10" maxlength="20" /> <label for="svnpw">php.net Password:</label> - <input type="password" id="svnpw" name="pw" value="<?php echo htmlspecialchars($pw); ?>" size="10" maxlength="20" /> + <input type="password" id="svnpw" name="pw" value="<?php echo htmlspecialchars($pw); ?>" size="10" /> <!--<label for="save">Remember:</label><input style="vertical-align:middle;" type="checkbox" id="save" name="save" <?php echo !empty($_POST['save']) ? 'checked="checked"' : ''; ?> />--> <?php if (!$show_bug_info) { ?> <input type="submit" value="Submit" /> diff --git a/www/fix.php b/www/fix.php index 7e0acbc..6514c63 100644 --- a/www/fix.php +++ b/www/fix.php @@ -74,7 +74,7 @@ if ($logged_in == 'developer') { <label for="svnuser">php.net Username:</label> <input type="text" id="svnuser" name="user" value="<?php echo htmlspecialchars($user) ?>" size="10" maxlength="20" /> <label for="svnpw">php.net Password:</label> - <input type="password" id="svnpw" name="pw" value="<?php echo htmlspecialchars($pwd) ?>" size="10" maxlength="20" /> + <input type="password" id="svnpw" name="pw" value="<?php echo htmlspecialchars($pwd) ?>" size="10" /> <label for="save">Remember:</label><input style="vertical-align:middle;" type="checkbox" id="save" name="save" <?php echo !empty($_POST['save']) ? 'checked="checked"' : ''; ?> /> </div> </div> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
