1
0
Fork 0

Rename DBA::is_result to DBA::isResult

This commit is contained in:
Hypolite Petovan 2018-07-21 08:46:04 -04:00 committed by Hypolite Petovan
commit ecea7425f8
152 changed files with 765 additions and 765 deletions

View file

@ -209,7 +209,7 @@ function acl_content(App $a)
exit;
}
if (DBA::is_result($r)) {
if (DBA::isResult($r)) {
$forums = [];
foreach ($r as $g) {
$entry = [
@ -242,7 +242,7 @@ function acl_content(App $a)
if ($conv_id) {
// In multi threaded posts the conv_id is not the parent of the whole thread
$parent_item = Item::selectFirst(['parent'], ['id' => $conv_id]);
if (DBA::is_result($parent_item)) {
if (DBA::isResult($parent_item)) {
$conv_id = $parent_item['parent'];
}