]> git.mxchange.org Git - friendica.git/blobdiff - include/spool_post.php
Issue 3857: There is the possibility of a bad handling of dislikes
[friendica.git] / include / spool_post.php
index f64b39e4b687bda0e0b42434ed88c2872367c463..b7b8de396ad6b0ba47772c15dc76124fd49e2bd8 100644 (file)
@@ -4,7 +4,7 @@
  * @brief Posts items that wer spooled because they couldn't be posted.
  */
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 require_once("include/items.php");
 
@@ -13,7 +13,7 @@ function spool_post_run($argv, $argc) {
 
        $path = get_spoolpath();
 
-       if (($path != '') AND is_writable($path)){
+       if (($path != '') && is_writable($path)){
                if ($dh = opendir($path)) {
                        while (($file = readdir($dh)) !== false) {
 
@@ -30,7 +30,7 @@ function spool_post_run($argv, $argc) {
                                }
 
                                // We can't read or write the file? So we don't care about it.
-                               if (!is_writable($fullfile) OR !is_readable($fullfile)) {
+                               if (!is_writable($fullfile) || !is_readable($fullfile)) {
                                        continue;
                                }
 
@@ -42,7 +42,7 @@ function spool_post_run($argv, $argc) {
                                }
 
                                // Skip if it doesn't seem to be an item array
-                               if (!isset($arr['uid']) AND !isset($arr['uri']) AND !isset($arr['network'])) {
+                               if (!isset($arr['uid']) && !isset($arr['uri']) && !isset($arr['network'])) {
                                        continue;
                                }
 
@@ -55,4 +55,3 @@ function spool_post_run($argv, $argc) {
                }
        }
 }
-?>