]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
No need for php interpreter again as this script is executable.
authorRoland Haeder <roland@mxchange.org>
Wed, 10 Sep 2014 20:06:50 +0000 (22:06 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 10 Sep 2014 20:06:50 +0000 (22:06 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
lib/default.php
lib/inboxnoticestream.php
scripts/commandline.inc.php
scripts/startdaemons.sh
scripts/stopdaemons.sh

index 59f3cd99856f0a884fccb6d25787be43a7e6e4d8..e2cc80cb1b2643e6783f32c3233372b97ced9911 100644 (file)
@@ -131,7 +131,7 @@ $default =
               'delete' => false,
               'move' => true),
         'image' =>
-        array('jpegquality' => 85),
+        array('jpegquality' => 95),
         'avatar' =>
         array('server' => null,
               'dir' => INSTALLDIR . '/avatar/',
index 87868b1d79aab4f2e6b852dac3a7106ac229c293..0d8733e079cc31989dd0e6ecc009a035154c607f 100644 (file)
@@ -139,11 +139,13 @@ class RawInboxNoticeStream extends NoticeStream
 
     function getNotices($offset, $limit, $sinceId, $maxId)
     {
+        //common_debug('offset=' . $offset . ',limit=' . $limit . ',sinceId=' . $sinceId . ',maxId=' . $maxId . ' - CALLED!');
         $all = array();
 
         do {
 
             $ids = $this->getNoticeIds($offset, $limit, $sinceId, $maxId);
+            //common_debug('ids()=' . count($ids));
 
             $notices = Notice::pivotGet('id', $ids);
 
@@ -158,8 +160,10 @@ class RawInboxNoticeStream extends NoticeStream
                 $limit  -= count($notices);
             }
 
+            //common_debug('all()=' . count($all));
         } while (count($notices) < count($ids) && count($ids) > 0);
 
+        //common_debug('all()=' . count($all) . ' - EXIT!');
         return new ArrayWrapper($all);
     }
 }
index d7ee1588017bbf9c35a2ace7ca2cc4f9483d6a77..0a5257cdd5a2ec35652bbd890b0e4788bd8cc2bc 100644 (file)
@@ -35,6 +35,7 @@ ini_set("max_execution_time", "0");
 ini_set("max_input_time", "0");
 set_time_limit(0);
 mb_internal_encoding('UTF-8');
+error_reporting(0);
 
 // Add extlib to our path so we can get Console_Getopt
 
index 2ed3528c5e0d5b28338df53bb43a14d6a6d292f8..c4d86053e92b09d92d26265b292a29d6074ff6fc 100755 (executable)
@@ -35,7 +35,7 @@ if [ $# -gt 1 ]; then
 fi
 
 DIR=`dirname $0`
-DAEMONS=`php $DIR/getvaliddaemons.php $ARGSG`
+DAEMONS=`$DIR/getvaliddaemons.php $ARGSG`
 
 for f in $DAEMONS; do
 
index 35841b64a85008e8dc509220b3bcbc487fcd271f..b4a3725d8dcfba215f1785c87e001b0b82879309 100755 (executable)
@@ -31,9 +31,9 @@ if [ $# -gt 0 ] ; then
 fi
 
 SDIR=`dirname $0`
-DIR=`php $SDIR/getpiddir.php $SITE`
+DIR=`$SDIR/getpiddir.php $SITE`
 
-DAEMONS=`php $SDIR/getvaliddaemons.php`
+DAEMONS=`$SDIR/getvaliddaemons.php`
 
 for f in $DAEMONS; do
     f=$(basename $f .php)