aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKlaus <Klaus.Weidenbach@gmx.net>2014-02-16 10:25:32 +0100
committerKlaus <Klaus.Weidenbach@gmx.net>2014-02-16 10:25:32 +0100
commit29f6a1ee33b27886afc135e05ecac592651bb7b2 (patch)
tree65650f3af8ff099d2b196e76cff63f480776bfe1 /include
parent01f31c2f2060a925c22b3f92e841d4f951d1825c (diff)
downloadvolse-hubzilla-29f6a1ee33b27886afc135e05ecac592651bb7b2.tar.gz
volse-hubzilla-29f6a1ee33b27886afc135e05ecac592651bb7b2.tar.bz2
volse-hubzilla-29f6a1ee33b27886afc135e05ecac592651bb7b2.zip
removed unused function posted_date_widget
This functions seems not to be used anywhere. include/widgets.php contains widget_archive($arr) which has the same functionality.
Diffstat (limited to 'include')
-rwxr-xr-xinclude/items.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/items.php b/include/items.php
index 3c10b8f5c..9dc65f89c 100755
--- a/include/items.php
+++ b/include/items.php
@@ -3622,26 +3622,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();