[PC-BSD Commits] r2197 - in websites: bsdstats.org/bsdstats/sbin pbidir.com/bibivu/etc pbidir.com/bibivu/sbin
svn at pcbsd.org
svn at pcbsd.org
Sat Jun 28 11:53:03 PDT 2008
Author: fabry
Date: 2008-06-28 11:53:03 -0700 (Sat, 28 Jun 2008)
New Revision: 2197
Modified:
websites/bsdstats.org/bsdstats/sbin/uri.php
websites/pbidir.com/bibivu/etc/uri.conf.php
websites/pbidir.com/bibivu/sbin/uri.php
Log:
fixed an issue with the way that the UIR configuration is loaded.
Modified: websites/bsdstats.org/bsdstats/sbin/uri.php
===================================================================
--- websites/bsdstats.org/bsdstats/sbin/uri.php 2008-06-28 14:48:18 UTC (rev 2196)
+++ websites/bsdstats.org/bsdstats/sbin/uri.php 2008-06-28 18:53:03 UTC (rev 2197)
@@ -22,7 +22,7 @@
$this->set_delimiter($config->get('uri_delimiter','/'));
$this->set_hide_self($config->get('uri_hide_self',false));
$this->set_hide_host($config->get('uri_hide_host',false));
- $this->set_extension($config->get('extension','.html'));
+ $this->set_extension($config->get('uri_extension','.html'));
$this->_fill_GET();
// $host = $_SERVER['HTTP_HOST'];
Modified: websites/pbidir.com/bibivu/etc/uri.conf.php
===================================================================
--- websites/pbidir.com/bibivu/etc/uri.conf.php 2008-06-28 14:48:18 UTC (rev 2196)
+++ websites/pbidir.com/bibivu/etc/uri.conf.php 2008-06-28 18:53:03 UTC (rev 2197)
@@ -49,5 +49,5 @@
if set to false it will not add an extension
*/
-$uri['extension'] = '.html';
+$uri['extension'] = false;
?>
\ No newline at end of file
Modified: websites/pbidir.com/bibivu/sbin/uri.php
===================================================================
--- websites/pbidir.com/bibivu/sbin/uri.php 2008-06-28 14:48:18 UTC (rev 2196)
+++ websites/pbidir.com/bibivu/sbin/uri.php 2008-06-28 18:53:03 UTC (rev 2197)
@@ -22,7 +22,7 @@
$this->set_delimiter($config->get('uri_delimiter','/'));
$this->set_hide_self($config->get('uri_hide_self',false));
$this->set_hide_host($config->get('uri_hide_host',false));
- $this->set_extension($config->get('extension','.html'));
+ $this->set_extension($config->get('uri_extension','.html'));
$this->_fill_GET();
// $host = $_SERVER['HTTP_HOST'];
More information about the Commits
mailing list