diff options
| author | Mark Pemberton <mpemberton5@gmail.com> | 2011-06-04 00:38:07 -0400 |
|---|---|---|
| committer | Mark Pemberton <mpemberton5@gmail.com> | 2011-06-04 00:38:07 -0400 |
| commit | b628e63e015bc3b2eadc712feaa6c4d05cf75bbd (patch) | |
| tree | ebdcec5c8133a3b6f86d06dc3f6fb3de46609f04 /data/templates/users.tpl.php | |
| parent | 84e603aa91a303a1419962ff3ff6086710a7b1a9 (diff) | |
| parent | 4c8a53c5bc632302aaf8978e711eb53a03166db5 (diff) | |
| download | semanticscuttle-b628e63e015bc3b2eadc712feaa6c4d05cf75bbd.tar.gz semanticscuttle-b628e63e015bc3b2eadc712feaa6c4d05cf75bbd.tar.bz2 | |
Merge branch 'master' into privatekey2
Conflicts:
data/templates/default/bookmarks.tpl.php
Diffstat (limited to 'data/templates/users.tpl.php')
| -rw-r--r-- | data/templates/users.tpl.php | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/data/templates/users.tpl.php b/data/templates/users.tpl.php deleted file mode 100644 index fa92bef..0000000 --- a/data/templates/users.tpl.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php -$this->includeTemplate($GLOBALS['top_include']); - -if ($users && count($users) > 0) { -?> - -<!--p id="sort"> - <?php echo T_("Sort by:"); ?> - <a href="?sort=alphabet_asc"><?php echo T_("Alphabet"); ?></a><span> / </span> - <a href="?sort=popularity_asc"><?php echo T_("Popularity"); ?></a> -</p--> -<p class="users"> -<ul> -<?php -$contents = '<'; -foreach ($users as $row) { - echo '<li><strong>' - . SemanticScuttle_Model_UserArray::getName($row) . '</strong>' - . ' (<a href="' . createURL('profile', $row['username']) . '">' - . T_('profile') . '</a> ' - . T_('created in') . ' ' - . date('M Y', strtotime($row['uDatetime'])) . ')' - . ' : <a href="' . createURL('bookmarks', $row['username']).'">' - . T_('bookmarks') . '</a></li>'; -} -?> -</ul> -</p> - -<?php -} -$this->includeTemplate($GLOBALS['bottom_include']); -?> |
