| Hannes Magnusson 2007-02-10, 7:00 pm |
| bjori Sat Feb 10 21:50:15 2007 UTC
Modified files:
/phpweb/manual phpfi2.php
Log:
Fix BASE_PAGE (should not be prefixed with slash)
http://cvs.php.net/viewvc.cgi/phpwe...0&diff_format=u
Index: phpweb/manual/phpfi2.php
diff -u phpweb/manual/phpfi2.php:1.9 phpweb/manual/phpfi2.php:1.10
--- phpweb/manual/phpfi2.php:1.9 Wed Jan 21 10:46:49 2004
+++ phpweb/manual/phpfi2.php Sat Feb 10 21:50:15 2007
@@ -1,6 +1,6 @@
<?php
-// $Id: phpfi2.php,v 1.9 2004/01/21 10:46:49 goba Exp $
-$_SERVER['BASE_PAGE'] = '/manual/phpfi2.php';
+// $Id: phpfi2.php,v 1.10 2007/02/10 21:50:15 bjori Exp $
+$_SERVER['BASE_PAGE'] = 'manual/phpfi2.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
site_header('PHP/FI Version 2.0 Documentation');
?>
@@ -7635,4 +7635,4 @@
various libraries that could be linked into PHP. The gdbm library
is one such example.</p>
-<?php site_footer(); ?>
\ No newline at end of file
+<?php site_footer(); ?>
|