]> git.llucax.com Git - software/bife/web.git/blobdiff - index.php
Fixed typos and ortography
[software/bife/web.git] / index.php
index 862cc1ff244c9ae438a3b370ca844b4dedba88ff..e88874394e64f04f9b1bf1e06791d70099306fdf 100644 (file)
--- a/index.php
+++ b/index.php
@@ -27,8 +27,6 @@
 //
 
 // Inicialization {{{
-#ini_set('include_path', '../src:../../hit/src:../../bife/src:'.
-#    ini_get('include_path'));
 umask('002');
 require_once 'HTML/Template/HIT.php';
 require_once 'BIFE/Parser.php';
@@ -36,9 +34,15 @@ require_once 'BIFE/Translate.php';
 // }}}
 
 // Selects the file to view {{{
-$file = (@$_SERVER['PATH_INFO'] and ($_SERVER['PATH_INFO'] != '/'))
-    ? ".{$_SERVER['PATH_INFO']}"
-    : 'index.xbf';
+if (@$_SERVER['PATH_INFO']) {
+    $file = $_SERVER['PATH_INFO'];
+    // If it ends with a slash it's a directory so we add index.xbf.
+    if (substr($_SERVER['PATH_INFO'], strlen($_SERVER['PATH_INFO'])-1) == '/') {
+        $file .= 'index.xbf';
+    }
+} else {
+    $file = 'index.xbf';
+}
 // }}}
 
 // Looks if we want to show the source {{{