]> git.llucax.com Git - software/bife/bife-all.git/commitdiff
Removed default link to index.xbf when url ends with '/'.
authorLeandro Lucarella <llucax@gmail.com>
Sat, 12 Jul 2003 03:20:56 +0000 (03:20 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 12 Jul 2003 03:20:56 +0000 (03:20 +0000)
base/Doxyfile
base/package.xml
base/src/BIFE/Link.php

index fd92d10b01983c23b83757fdd35ed21347666be3..bc2b7f2844c791b7ee4e25cab81dc1f9cebe9d9f 100644 (file)
@@ -4,7 +4,7 @@
 # General configuration options
 #---------------------------------------------------------------------------
 PROJECT_NAME           = "BIFE Base"
-PROJECT_NUMBER         = 1.0.0beta3
+PROJECT_NUMBER         = 1.0.0beta4
 OUTPUT_DIRECTORY       = api
 OUTPUT_LANGUAGE        = English
 USE_WINDOWS_ENCODING   = NO
index f66c032d32b47b473a673e920f39258bf37b0941..9ce9707df5dda2ca87088cbc0855519102065920 100644 (file)
@@ -19,7 +19,7 @@ others.
     </maintainers>
 
     <release>
-        <version>1.0.0beta3</version>
+        <version>1.0.0beta4</version>
         <date>2003-06-29</date>
         <state>beta</state>
         <notes>Check http://bife.llucax.hn.org/ for details.</notes>
index 0929c3f8752dd45d71c6001c1eb35501c01e3b14..c6e130119843770e434deb7265aa1f69c7f97f0b 100644 (file)
@@ -85,9 +85,6 @@ class BIFE_Link extends BIFE_Container {
     function getURL($attrs) // ~X2C
     {
         $url = @$attrs['URL'];
-        if (substr($url, strlen($url)-1) == '/') {
-            $url .= 'index.xbf'; // TODO - add a configuration option for this.
-        }
         unset($attrs['URL']);
         $query = array();
         foreach($attrs as $name => $value) {
@@ -148,4 +145,4 @@ class BIFE_Link extends BIFE_Container {
 
 } // -X2C Class :Link
 
-?>
\ No newline at end of file
+?>