- Fix bug #2934891: RSS XML was sometimes invalid because
special characters did not get escaped.
- Special header file for shell scripts (header-standalone.php)
+- Fix E_NOTICE when calling alltags.php without any parameter
0.95.2 - 2010-01-16
require_once '../src/SemanticScuttle/header.php';
/* Service creation: only useful services are created */
-$b2tservice =SemanticScuttle_Service_Factory::get('Bookmark2Tag');
-$cacheservice =SemanticScuttle_Service_Factory::get('Cache');
+$b2tservice = SemanticScuttle_Service_Factory::get('Bookmark2Tag');
+$cacheservice = SemanticScuttle_Service_Factory::get('Cache');
-
-
-list($url, $user) = explode('/', $_SERVER['PATH_INFO']);
+list($url, $user) = explode(
+ '/',
+ isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/'
+);
if (!$user) {
header('Location: '. createURL('populartags'));
exit;