]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Added debug lines, the first attempt didn't work and I have *no* development system...
authorRoland Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 21:07:51 +0000 (22:07 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:00 +0000 (00:21 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
classes/Notice.php

index 764b4edd8b6fcfcb32500e4a2c797223afaa7185..453de30ffeb71e1adc4eaed865a8ed2916fb25bc 100644 (file)
@@ -2695,9 +2695,11 @@ class Notice extends Managed_DataObject
         $user = common_current_user();
 
         // Is the general scope check okay and the user in logged in?
+        /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ',user[]=' . gettype($user));
         if (($inScope === TRUE) && ($user instanceof User)) {
             // Get profile from it
             $profile = $user->getProfile();
+            /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ',profile[]=' . gettype($profile));
 
             /*
              * Check scope, else a privacy leaks happens this way:
@@ -2718,6 +2720,7 @@ class Notice extends Managed_DataObject
              * very political words.
              */
             $inScope = $this->inScope($profile);
+            /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ' - After inScope() has been called.');
         }
 
         $tags = array();