Some rewrites:
- max_proccesses_reach() and maxload_reached() (why no _ behind max?) are called both way, static and with object reference. - this is strongly discouraged and should be avoided as its support (in PHP) may be dropped in future releases. - used $a = get_app(); to encapsulate code (even when the function does currently the same, it may be changed later) Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
47c60aa486
commit
293436e5fd
27 changed files with 69 additions and 67 deletions
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
function create_files_from_item($itemid) {
|
||||
global $a;
|
||||
$a = get_app();
|
||||
|
||||
$messages = q("SELECT `guid`, `uid`, `id`, `edited`, `deleted`, `file`, `parent` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue