Class file relocations

Issue #3878
This commit is contained in:
Adam Magness 2017-11-07 22:57:46 -05:00
parent 6189f6c8e7
commit 4ca68c7af0
151 changed files with 987 additions and 8742 deletions

View file

@ -1,7 +1,7 @@
<?php
namespace Friendica\Core;
use Friendica\Database\Dbm;
use Friendica\Database\DBM;
use dba;
/**
@ -99,7 +99,7 @@ class Config {
}
$ret = dba::select('config', array('v'), array('cat' => $family, 'k' => $key), array('limit' => 1));
if (Dbm::is_result($ret)) {
if (DBM::is_result($ret)) {
// manage array value
$val = (preg_match("|^a:[0-9]+:{.*}$|s", $ret['v']) ? unserialize($ret['v']) : $ret['v']);