Use the user's TZ as the default when creating a party, correct grammar concerning duration unit, add a separator between party options, and convert account options from an unordered list to a paragraph.

This commit is contained in:
reed%reedloden.com 2006-10-11 02:43:58 +00:00
Родитель 200cca0069
Коммит b7bb4c1c60
3 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -57,7 +57,7 @@ class PartiesController extends AppController {
$this->set('map', 'mapInit()');
if(empty($this->data)) {
$this->set('utz', '0');
$this->set('utz', $_SESSION['User']['tz']);
$this->render();
}

Просмотреть файл

@ -6,16 +6,16 @@
<?php
if (!empty($party['Party']['address']))
echo 'Location: '.$party['Party']['address']."<br/>\n";
if (!empty($party['Party']['vname']))
echo 'Venue: '.$party['Party']['vname']."<br/>\n";
echo 'Date: '.(($party['Party']['confirmed'] == 1) ? gmdate('Y-m-d h:ia', $party['Party']['date'] + (@$_SESSION['User']['tz'] * 60 * 60))." GMT".@$_SESSION['User']['tz'] : "TBA")."<br/>\n";
echo 'Duration: '.$party['Party']['duration']." hours\n<br/>";
echo 'Duration: '.$party['Party']['duration'].' hour'.(($party['Party']['duration'] == 1) ? '' : 's')."\n<br/>";
if (!empty($party['Party']['website']))
echo 'Website: <a href="'.$party['Party']['website'].'" rel="nofollow">'.$party['Party']['website']."</a><br/>\n";
if (!empty($party['Party']['notes']))
echo 'Notes: '.$party['Party']['notes']."<br/>\n";
?>
@ -54,8 +54,7 @@
</div>
<?php if (@$_SESSION['User']['id'] == $party['Party']['owner']):?>
<h1>Party options</h1>
<a href="<?php echo $html->url('/parties/edit/'.$party['Party']['id']);?>">Edit party</a>
<a href="<?php echo $html->url('/parties/invite/'.$party['Party']['id']);?>">Invite a guest</a>
<a href="<?php echo $html->url('/parties/edit/'.$party['Party']['id']);?>">Edit party</a> | <a href="<?php echo $html->url('/parties/invite/'.$party['Party']['id']);?>">Invite a guest</a>
<?php endif; ?>
<?php if (isset($flickr)): ?>
<h1 id="photos">Photos <a title="Photo Feed" href="<?php echo $html->url('/feeds/photos/'.$party['Party']['id']); ?>"><img src="<?php echo $html->url('/img/feed16.png'); ?>" alt="Atom"/></a></h1>

Просмотреть файл

@ -54,7 +54,8 @@
?>
</p>
<h2>Account Options</h2>
<ul>
<li><a href="<?php echo $html->url('/users/edit'); ?>">Edit my account</a></li>
<li><a href="<?php echo $html->url('/users/logout'); ?>">Logout</a></li>
</ul>
<p>
<a href="<?php echo $html->url('/users/edit'); ?>">Edit my account</a>
<br/>
<a href="<?php echo $html->url('/users/logout'); ?>">Logout</a>
</p>