]> git.mxchange.org Git - friendica.git/blobdiff - include/items.php
Merge pull request #537 from fermionic/20121121-features
[friendica.git] / include / items.php
index 95676ac056ae246b50f46e40c48717d68267aac1..fb7a7e25d153d8bd5a93a626a388fac9d23257a3 100755 (executable)
@@ -4031,10 +4031,13 @@ function posted_dates($uid,$wall) {
 function posted_date_widget($url,$uid,$wall) {
        $o = '';
 
+       if(! feature_enabled($uid,'archives'))
+               return $o;
+
        // For former Facebook folks that left because of "timeline"
 
-       if($wall && intval(get_pconfig($uid,'system','no_wall_archive_widget')))
-               return $o;
+/*     if($wall && intval(get_pconfig($uid,'system','no_wall_archive_widget')))
+               return $o;*/
 
        $ret = posted_dates($uid,$wall);
        if(! count($ret))