diff options
Diffstat (limited to 'contrib/feed-browser/index.php')
-rw-r--r-- | contrib/feed-browser/index.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/feed-browser/index.php b/contrib/feed-browser/index.php index afa4c1a36a..a6c9206073 100644 --- a/contrib/feed-browser/index.php +++ b/contrib/feed-browser/index.php @@ -33,7 +33,10 @@ require_once 'includes/config.inc'; require_once 'includes/functions.inc'; -check_database(); +if(!check_database()) +{ + die("Database not found and cannot be created."); +} $name = ''; |