]> git.mxchange.org Git - friendica.git/blobdiff - include/items.php
disable archive widget for PHP < 5.3
[friendica.git] / include / items.php
index 35a4396dc9e5ee738ab3e69953f9ff1337409eb4..5c797424bfc634819707791adbfe5b844a0a877b 100755 (executable)
@@ -3436,6 +3436,18 @@ function posted_dates($uid,$wall) {
 
 function posted_date_widget($url,$uid,$wall) {
        $o = '';
+
+       // "first day of " constructs were added in php 5.3
+       // TODO: emulate posted_dates() logic for prior releases
+
+       if(version_compare(PHP_VERSION, '5.3.0') < 0)
+               return $o;
+
+       // For former Facebook folks that left because of "timeline"
+
+       if($wall && intval(get_pconfig($uid,'system','no_wall_archive_widget')))
+               return $o;
+
        $ret = posted_dates($uid,$wall);
        if(! count($ret))
                return $o;