get rid of arrow entities
This commit is contained in:
parent
10ee2e79cc
commit
a04938f559
7 changed files with 17 additions and 17 deletions
|
@ -121,33 +121,33 @@ $votingSort = 'voting_desc';
|
||||||
|
|
||||||
switch(getSortOrder()) {
|
switch(getSortOrder()) {
|
||||||
case 'date_asc':
|
case 'date_asc':
|
||||||
$dateArrow = ' ↑';
|
$dateArrow = ' ↑';
|
||||||
$dateSort = 'date_desc';
|
$dateSort = 'date_desc';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'title_asc':
|
case 'title_asc':
|
||||||
$titleArrow = ' ↑';
|
$titleArrow = ' ↑';
|
||||||
$titleSort = 'title_desc';
|
$titleSort = 'title_desc';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'title_desc':
|
case 'title_desc':
|
||||||
$titleArrow = ' ↓';
|
$titleArrow = ' ↓';
|
||||||
$titleSort = 'title_asc';
|
$titleSort = 'title_asc';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'voting_asc':
|
case 'voting_asc':
|
||||||
$votingArrow = ' ↑';
|
$votingArrow = ' ↑';
|
||||||
$votingSort = 'voting_desc';
|
$votingSort = 'voting_desc';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'voting_desc':
|
case 'voting_desc':
|
||||||
$votingArrow = ' ↓';
|
$votingArrow = ' ↓';
|
||||||
$votingSort = 'voting_asc';
|
$votingSort = 'voting_asc';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'date_desc':
|
case 'date_desc':
|
||||||
default:
|
default:
|
||||||
$dateArrow = ' ↓';
|
$dateArrow = ' ↓';
|
||||||
$dateSort = 'date_asc';
|
$dateSort = 'date_asc';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ $this->includeTemplate($GLOBALS['top_include']);
|
||||||
<tr>
|
<tr>
|
||||||
<th align="left"><?php echo T_('E-mail'); ?></th>
|
<th align="left"><?php echo T_('E-mail'); ?></th>
|
||||||
<td><input type="text" name="pMail" size="75" value="<?php echo filter($objectUser->getEmail(), 'xml'); ?>" /></td>
|
<td><input type="text" name="pMail" size="75" value="<?php echo filter($objectUser->getEmail(), 'xml'); ?>" /></td>
|
||||||
<td>← <?php echo T_('Required'); ?></td>
|
<td>← <?php echo T_('Required'); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -65,13 +65,13 @@ if (sizeof($menuTags) > 0 || ($userid != 0 && $userid === $logged_on_userid)) {
|
||||||
<?php $cUser = $userservice->getUser($userid); ?>
|
<?php $cUser = $userservice->getUser($userid); ?>
|
||||||
<?php if($userid>0): ?>
|
<?php if($userid>0): ?>
|
||||||
<?php if($userid==$logged_on_userid): ?>
|
<?php if($userid==$logged_on_userid): ?>
|
||||||
<p style="text-align:right"><a href="<?php echo createURL('alltags', $cUser['username']); ?>" title="<?php echo T_('See all your tags')?>"><?php echo T_('all your tags'); ?></a> →</p>
|
<p style="text-align:right"><a href="<?php echo createURL('alltags', $cUser['username']); ?>" title="<?php echo T_('See all your tags')?>"><?php echo T_('all your tags'); ?></a> →</p>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<p style="text-align:right"><a href="<?php echo createURL('alltags', $cUser['username']); ?>" title="<?php echo T_('See all tags from this user')?>"><?php echo T_('all tags from this user'); ?></a> →</p>
|
<p style="text-align:right"><a href="<?php echo createURL('alltags', $cUser['username']); ?>" title="<?php echo T_('See all tags from this user')?>"><?php echo T_('all tags from this user'); ?></a> →</p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
<p style="text-align:right"><a href="<?php echo createURL('populartags', $cUser['username']); ?>" title="<?php echo T_('See popular tags')?>"><?php echo T_('Popular Tags'); ?></a> →</p>
|
<p style="text-align:right"><a href="<?php echo createURL('populartags', $cUser['username']); ?>" title="<?php echo T_('See popular tags')?>"><?php echo T_('Popular Tags'); ?></a> →</p>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ if ($recentTags && count($recentTags) > 0) {
|
||||||
}
|
}
|
||||||
echo $contents ."</p>\n";
|
echo $contents ."</p>\n";
|
||||||
?>
|
?>
|
||||||
<p style="text-align:right"><a href="<?php echo createURL('populartags'); ?>"><?php echo T_('Popular Tags'); ?></a> →</p>
|
<p style="text-align:right"><a href="<?php echo createURL('populartags'); ?>"><?php echo T_('Popular Tags'); ?></a> →</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -27,7 +27,7 @@ foreach ($lastUsers as $row) {
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
<p style="text-align:right"><a href="<?php echo createURL('users'); ?>" title="<?php echo T_('See all users')?>"><?php echo T_('All users'); ?></a> →</p>
|
<p style="text-align:right"><a href="<?php echo createURL('users'); ?>" title="<?php echo T_('See all users')?>"><?php echo T_('All users'); ?></a> →</p>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@ foreach($watching as $watchuser) {
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php if(count($closeContacts)>0):?>
|
<?php if(count($closeContacts)>0):?>
|
||||||
<h2 title="<?php echo T_('Close contacts are mutual contacts');?>"><?php echo ' ↔ '. T_('Close contacts'); ?></h2>
|
<h2 title="<?php echo T_('Close contacts are mutual contacts');?>"><?php echo ' ↔ '. T_('Close contacts'); ?></h2>
|
||||||
<div id="watching">
|
<div id="watching">
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($closeContacts as $watchuser): ?>
|
<?php foreach($closeContacts as $watchuser): ?>
|
||||||
|
@ -27,7 +27,7 @@ foreach($watching as $watchuser) {
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
|
||||||
<h2><?php echo ' → '. T_('Watching'); ?></h2>
|
<h2><?php echo ' → '. T_('Watching'); ?></h2>
|
||||||
<div id="watching">
|
<div id="watching">
|
||||||
<ul>
|
<ul>
|
||||||
<?php if($userservice->isLoggedOn() && $currentUser->getUsername() == $user): ?>
|
<?php if($userservice->isLoggedOn() && $currentUser->getUsername() == $user): ?>
|
||||||
|
@ -49,7 +49,7 @@ foreach($watching as $watchuser) {
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2><?php echo ' ← '. T_('Watched By'); ?></h2>
|
<h2><?php echo ' ← '. T_('Watched By'); ?></h2>
|
||||||
<div id="watching">
|
<div id="watching">
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($watchedBy as $watchuser): ?>
|
<?php foreach($watchedBy as $watchuser): ?>
|
||||||
|
|
|
@ -11,12 +11,12 @@ window.onload = function() {
|
||||||
<tr>
|
<tr>
|
||||||
<th align="left"><?php echo T_('Old'); ?></th>
|
<th align="left"><?php echo T_('Old'); ?></th>
|
||||||
<td><input type="text" name="old" id="old" value="<?php echo $old; ?>" /></td>
|
<td><input type="text" name="old" id="old" value="<?php echo $old; ?>" /></td>
|
||||||
<td>← <?php echo T_('Required'); ?></td>
|
<td>← <?php echo T_('Required'); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th align="left"><?php echo T_('New'); ?></th>
|
<th align="left"><?php echo T_('New'); ?></th>
|
||||||
<td><input type="text" name="new" id="new" value="" /></td>
|
<td><input type="text" name="new" id="new" value="" /></td>
|
||||||
<td>← <?php echo T_('Required'); ?></td>
|
<td>← <?php echo T_('Required'); ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td></td>
|
<td></td>
|
||||||
|
|
Loading…
Reference in a new issue