diff options
author | friendica <info@friendica.com> | 2014-02-17 15:11:05 +1100 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-17 15:11:05 +1100 |
commit | f38ab0904101366bf536d46ab460dcd5cf4f60ca (patch) | |
tree | c6679ddb544217a10d8255578009c4ba8951bc6b /include/items.php | |
parent | df22a7893614a2d3e5cba6614bd254f59257a5f5 (diff) | |
parent | 29f6a1ee33b27886afc135e05ecac592651bb7b2 (diff) | |
download | volse-hubzilla-f38ab0904101366bf536d46ab460dcd5cf4f60ca.tar.gz volse-hubzilla-f38ab0904101366bf536d46ab460dcd5cf4f60ca.tar.bz2 volse-hubzilla-f38ab0904101366bf536d46ab460dcd5cf4f60ca.zip |
Merge pull request #316 from dawnbreak/master
Make asset icons work in subdir installs as well.
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/items.php b/include/items.php index bf575860a..c90bfb41c 100755 --- a/include/items.php +++ b/include/items.php @@ -3638,26 +3638,6 @@ function posted_dates($uid,$wall) { } -function posted_date_widget($url,$uid,$wall) { - $o = ''; - - if(! feature_enabled($uid,'archives')) - return $o; - - $ret = posted_dates($uid,$wall); - if(! count($ret)) - return $o; - - $o = replace_macros(get_markup_template('posted_date_widget.tpl'),array( - '$title' => t('Archives'), - '$size' => ((count($ret) > 6) ? 6 : count($ret)), - '$url' => $url, - '$dates' => $ret - )); - return $o; -} - - function fetch_post_tags($items,$link = false) { $tag_finder = array(); |