0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.4.0-0
/
standard
/
htdocs
/
themes
/
Wordpress
/
templates
/
[
Home
]
File: viewsource.tmpl
<?php // -*-php-*- // rcs_id('$Id: viewsource.tmpl 7675 2010-09-03 13:08:03Z vargenau $'); ?> <div class="wikitext" id="viewform"> <?php if (empty($revision)) $revision = $page->getCurrentRevision(false); if ($page->get('locked') && !$user->isAdmin()) { ?> <p class="warning_msg"><strong><?php echo _("Note:")?></strong> <?php echo _("This page has been locked and cannot be edited.")?></p> <?php } ?> <?php if (! $revision->isCurrent()) { ?> <p class="warning_msg"><?php echo _("You are viewing an old revision of this page.")?> <?php echo Button('viewsource', _("View the current version"), $page)?>.</p> <?php } ?> <textarea class="wikiedit" name="content" rows="<?php echo $request->getPref('editHeight')?>" cols="<?php echo $request->getPref('editWidth')?>" readonly="readonly" ><?php echo $PAGE_SOURCE ?></textarea> <hr /> <a href="<?php echo WikiURL($page,array('action'=>_("PageHistory")))?>" ><?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> <br /> </div>