From: Arno H. <aho...@us...> - 2000-10-30 07:41:13
|
Update of /cvsroot/phpwiki/phpwiki/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv25045/lib Modified Files: config.php Log Message: fix for bug #117729 (fake author) Index: config.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/config.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** config.php 2000/10/28 17:44:00 1.9 --- config.php 2000/10/30 07:41:10 1.10 *************** *** 224,229 **** // Apache won't show REMOTE_HOST unless the admin configured it // properly. We'll be nice and see if it's there. ! empty($REMOTE_HOST) ? ! ($remoteuser = $REMOTE_ADDR) : ($remoteuser = $REMOTE_HOST); // constants used for HTML output. List tags like UL and --- 224,229 ---- // Apache won't show REMOTE_HOST unless the admin configured it // properly. We'll be nice and see if it's there. ! getenv('REMOTE_HOST') ? ($remoteuser = getenv('REMOTE_HOST')) ! : ($remoteuser = getenv('REMOTE_ADDR')); // constants used for HTML output. List tags like UL and |