]> git.mxchange.org Git - friendica.git/blobdiff - include/cron.php
Frio Bugfix: clear float at the end of comment-edit
[friendica.git] / include / cron.php
index 925bb5eab5c26a9f3d2a525af8cbd15f65185d43..fea5b3961df9f7f63a7d50d2ccc39ad4ba1cd927 100644 (file)
@@ -11,6 +11,7 @@ if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
 }
 
 require_once("boot.php");
+require_once("include/photos.php");
 
 
 function cron_run(&$argv, &$argc){
@@ -155,8 +156,9 @@ function cron_run(&$argv, &$argc){
  */
 function cron_update_photo_albums() {
        $r = q("SELECT `uid` FROM `user` WHERE NOT `account_expired` AND NOT `account_removed`");
-       if (!dbm::is_result($r))
+       if (!dbm::is_result($r)) {
                return;
+       }
 
        foreach ($r AS $user) {
                photo_albums($user['uid'], true);