Fix typo in Model\Config\PConfig
This commit is contained in:
parent
b0e06699da
commit
d1c048cd4b
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class PConfig extends DbaConfig
|
||||||
if (empty($cat)) {
|
if (empty($cat)) {
|
||||||
$configs = $this->dba->select('pconfig', ['cat', 'v', 'k'], ['uid' => $uid]);
|
$configs = $this->dba->select('pconfig', ['cat', 'v', 'k'], ['uid' => $uid]);
|
||||||
} else {
|
} 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)) {
|
while ($config = $this->dba->fetch($configs)) {
|
||||||
|
|
Loading…
Reference in a new issue