Changeset 292
- Timestamp:
- 02/13/07 17:18:58 (4 years ago)
- Location:
- eaccelerator/trunk
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
control.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
eaccelerator/trunk/ChangeLog
r291 r292 7 7 * Cleanup: Removed some commented out code, changed some debug statements, 8 8 reordered some conditional includes to reduce ifdef statements 9 * Check if those array indices are set before testing them in control.php 9 10 10 11 2007-01-29 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> -
eaccelerator/trunk/control.php
r285 r292 55 55 56 56 // Authenticate before proceeding 57 if ($auth && ($_SERVER['PHP_AUTH_USER'] != $user || $_SERVER['PHP_AUTH_PW'] != $pw)) { 57 if ($auth && (!isset($_SERVER['PHP_AUTH_USER']) || !isset($_SERVER['PHP_AUTH_PW']) || 58 $_SERVER['PHP_AUTH_USER'] != $user || $_SERVER['PHP_AUTH_PW'] != $pw)) { 58 59 header('WWW-Authenticate: Basic realm="eAccelerator control panel"'); 59 60 header('HTTP/1.0 401 Unauthorized');
Note: See TracChangeset
for help on using the changeset viewer.