From 64a9306d31e5b18879850fcdbd549f246753f04e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Wed, 22 Apr 2009 22:01:19 +0200 Subject: [PATCH] objectManager: Also show admin links at the top when viewing entries (+cosmetic) --- include/objectManager.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/objectManager.php b/include/objectManager.php index 74760b2..7635f22 100644 --- a/include/objectManager.php +++ b/include/objectManager.php @@ -1201,6 +1201,14 @@ class ObjectManager $aVars = $this->get_custom_vars($aClean, "view"); + echo "
"; + // display the move children entry + if($this->displayMoveChildren($oObject)) + echo "     "; + $this->displayChangeParent($oObject); + + echo "

"; + if(!$aVars) $oObject->display(); else @@ -1212,6 +1220,8 @@ class ObjectManager echo "     "; $this->displayChangeParent($oObject); + echo "

"; + echo html_back_link(1, $sBackLink); }