]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/viewsource.tmpl
Remove rcs_id
[SourceForge/phpwiki.git] / themes / default / templates / viewsource.tmpl
1 <?php // -*-php-*-
2 // $Id$
3 ?>
4
5 <?php if ($page->get('locked') && !$user->isAdmin()) { ?>
6   <p class="warning_msg"><strong><?php echo _("Note:")?></strong>
7   <?php echo _("This page has been locked and cannot be edited.")?>
8   </p>
9 <?php } ?>
10 <?php if ($revision and !$revision->isCurrent()) { ?>
11   <p class="warning_msg"><?php echo _("You are viewing an old revision of this page.")?>
12   <?php echo Button('edit', _("View the current version."), $page) ?>
13   </p>
14 <?php } ?>
15 <br class="clear-floats" />
16 <textarea class="wikiedit"
17           name="content"
18           rows="<?php echo $request->getPref('editHeight')?>"
19           cols="<?php echo $request->getPref('editWidth')?>"
20           readonly="readonly"
21 ><?php echo $PAGE_SOURCE ?></textarea>
22
23 <div id="footer"><!-- for top & bottom toolbars stylesheet -->
24 <?php echo Template('browse-footer')?>
25 </div>