]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/savepage.tmpl
Added status message to indicate lock status when page was locked / unlocked during...
[SourceForge/phpwiki.git] / themes / default / templates / savepage.tmpl
1 <?php // -*-html-*- ?>
2 <!-- $Id: savepage.tmpl,v 1.6 2002-02-04 20:38:01 carstenklapp Exp $ -->
3 <?php
4     $signatureURL = $Theme->getImageURL('signature');
5     if ($request->getArg('lockchanged'))
6         $LockChangedMsg = ($page->get('locked'))
7                            ? _("Page now locked.")
8                            : _("Page now unlocked.");
9     else
10         $LockChangedMsg = "";
11 ?>
12 <p><?=fmt("Thank you for editing %s.", WikiLink($page))?><br />
13 <?=_("Your careful attention to detail is much appreciated.")?></p>
14
15 <?php if (!empty($WARNINGS)) { ?>
16   <p><strong><?=_("Warning!")?></strong> <?= $WARNINGS ?></p>
17 <?php } ?>
18
19 <?php if ($signatureURL) { ?>
20   <p><img src="<?=$signatureURL?>" /></p>
21 <?php } ?>
22
23 <?=$LockChangedMsg?>
24 <hr noshade="noshade" />
25 <?= Template('browse') ?>