$Id$
-Version 0.12
+
+Version 0.13
============
- - Start using config file for default widgets attributes.
+ - Implements BIFE_Album_Pager.
-Version 0.13
-============
+Version 0.14
+=============
+
+ - Separate Album funtionality function from BIFE_Album, using hooks.
- - Separate Album funtionality function from renderer (BIFE_Album).
- - Use hooks libs for this.
+Version 1.0.0
+=============
+
+ - Write documentation.
+
+
+Version 1.2.0
+=============
+
+ - Start using config file for default widgets attributes.
// }}}
// Selects the file to view {{{
-$file = isset($_REQUEST['BIFE']) ? $_REQUEST['BIFE'] : 'index.xbf';
-#$file = isset($_SERVER['PATH_INFO']) ? ".{$_SERVER['PATH_INFO']}" : 'index.xbf';
+$file = (@$_SERVER['PATH_INFO'] and ($_SERVER['PATH_INFO'] != '/'))
+ ? ".{$_SERVER['PATH_INFO']}"
+ : 'index.xbf';
// }}}
// Looks if we want to show the source {{{