blob: a42acbac66e19fc23065faed806f55cebcd7cb36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/* Service creation: only useful services are created */
//No specific services
$watching = $userservice->getWatchNames($userid);
if ($watching) {
?>
<h2><?php echo T_('Watching'); ?></h2>
<div id="watching">
<ul>
<?php foreach($watching as $watchuser): ?>
<li><a href="<?php echo createURL('bookmarks', $watchuser); ?>"><?php echo $watchuser; ?></a> →</li>
<?php endforeach; ?>
</ul>
</div>
<?php
}
?>
|