aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-11 21:45:20 -0700
committerfriendica <info@friendica.com>2014-03-11 21:45:20 -0700
commit3f337dad2c783e62338a88887d1ef3d7754da410 (patch)
treec0b1c8f144b3fa8eef5697825f8baf6ab1ea2229 /include/config.php
parentd7dcf463ed887951930a1fb5b0360406542dedd7 (diff)
downloadvolse-hubzilla-3f337dad2c783e62338a88887d1ef3d7754da410.tar.gz
volse-hubzilla-3f337dad2c783e62338a88887d1ef3d7754da410.tar.bz2
volse-hubzilla-3f337dad2c783e62338a88887d1ef3d7754da410.zip
file had wrong extension
Diffstat (limited to 'include/config.php')
-rw-r--r--include/config.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/config.php b/include/config.php
index 8d98d56fa..add7b5f71 100644
--- a/include/config.php
+++ b/include/config.php
@@ -25,14 +25,6 @@ function load_config($family) {
$r = q("SELECT * FROM config WHERE cat = '%s'", dbesc($family));
- // This is often one of the earliest database calls in the life of the page.
- // If the DB was successfully opened, but we can't read from it,
- // we must assume catastrophic failure of the DB. Report the system down.
-
-// if($r === false) {
-// system_unavailable();
-// }
-
if($r !== false) {
if($r) {
foreach($r as $rr) {
@@ -285,7 +277,6 @@ function load_xconfig($xchan,$family = '') {
$a->config[$xchan][$c][$k] = $rr['v'];
}
}
-
}