diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-06-09 06:17:26 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-06-09 06:17:26 +0000 |
commit | d4ba6fb5cbbd5bf1e040be516009afd68d954571 (patch) | |
tree | a48232edecc202269269fb16f38039e6f6cf8642 /h-source/Application/Views/page.php | |
parent | 3e63edf93ce77bae2891d1d0e5552768453e8404 (diff) |
administrators can now see the deleted pages
Diffstat (limited to 'h-source/Application/Views/page.php')
-rw-r--r-- | h-source/Application/Views/page.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/h-source/Application/Views/page.php b/h-source/Application/Views/page.php index ef8b3a2..6fe3c2f 100644 --- a/h-source/Application/Views/page.php +++ b/h-source/Application/Views/page.php @@ -20,14 +20,15 @@ // along with h-source. If not, see <http://www.gnu.org/licenses/>. ?> - <?php if (!$isDeleted) { ?> + <?php if (!$isDeleted or $isadmin) { ?> <?php $tableName = (strcmp($this->action,'view') === 0) ? 'hardware' : 'revisions'; + $displayClass = ($isDeleted) ? 'display_none' : null; ?> <?php foreach ($table as $item) { ?> - <div class="notebooks_viewall"> + <div class="notebooks_viewall <?php echo $displayClass;?>"> <!--if revision--> <?php if (strcmp($this->action,'revision') === 0) { ?> |