1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 17:14:42 +02:00

Reduced some memory usage.

This commit is contained in:
Cameron
2021-01-24 17:00:02 -08:00
parent 8508cabcad
commit 522d71d243
30 changed files with 99 additions and 104 deletions

View File

@@ -59,8 +59,7 @@ $results = $ps['results'];
function search_comment($row) {
if (is_callable('com_search_'.$row['comment_type'])) {
$res = call_user_func('com_search_'.$row['comment_type'], $row);
return $res;
return call_user_func('com_search_'.$row['comment_type'], $row);
}
}