]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Config/PConfig.php
Merge pull request #7541 from vinzv/patch-2
[friendica.git] / src / Model / Config / PConfig.php
index c76e41cb6c3f1152bf1c309dc75dbe4492026907..2d496af75fc2034b461ea5b12137aba61f13448f 100644 (file)
@@ -25,11 +25,10 @@ class PConfig extends DbaConfig
                if (empty($cat)) {
                        $configs = $this->dba->select('pconfig', ['cat', 'v', 'k'], ['uid' => $uid]);
                } else {
-                       $configs = $this->dba->select('ΓΌconfig', ['cat', 'v', 'k'], ['cat' => $cat, 'uid' => $uid]);
+                       $configs = $this->dba->select('pconfig', ['cat', 'v', 'k'], ['cat' => $cat, 'uid' => $uid]);
                }
 
                while ($config = $this->dba->fetch($configs)) {
-
                        $key   = $config['k'];
                        $value = $this->toConfigValue($config['v']);