diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/bookmarks.tpl.php | 7 | 
1 files changed, 2 insertions, 5 deletions
diff --git a/data/templates/bookmarks.tpl.php b/data/templates/bookmarks.tpl.php index 0e9ac95..0050ec8 100644 --- a/data/templates/bookmarks.tpl.php +++ b/data/templates/bookmarks.tpl.php @@ -217,8 +217,7 @@ if($currenttag!= '') {  	id="bookmarks">  	<?php -	foreach(array_keys($bookmarks) as $key) { -		$row =& $bookmarks[$key]; +	foreach ($bookmarks as $key => &$row) {  		switch ($row['bStatus']) {  			case 0:  				$access = ''; @@ -234,9 +233,7 @@ if($currenttag!= '') {  		$cats = '';  		$tagsForCopy = '';  		$tags = $row['tags']; -		foreach(array_keys($tags) as $key) { - -			$tag =& $tags[$key]; +		foreach ($tags as $tkey => &$tag) {  			$cats .= '<a href="'. sprintf($cat_url, filter($row['username'], 'url'), filter($tag, 'url')) .'" rel="tag">'. filter($tag) .'</a>, ';  			$tagsForCopy.= $tag.',';  		}  | 
