X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/7ef22e2126b630156852e59acdb9d54283ab3462..3039de292a8f75426d4b2c0ea70a00b75bda5b02:/lib/utils.inc.php diff --git a/lib/utils.inc.php b/lib/utils.inc.php index 7ad8969..0b9fe70 100644 --- a/lib/utils.inc.php +++ b/lib/utils.inc.php @@ -1,5 +1,5 @@ root .'config.php'; require_once $CFG->root . 'lib/session_handler.inc.php'; @@ -22,9 +22,10 @@ class Utils { __TITLE__ -'; - private $footer = ''; +
'; + private $footer = '
'; private $heading = '

Session timeout:

__TITLE__

'; @@ -313,6 +314,16 @@ class Utils { return $user; } + public function authorized($recipient) { + $authorized = false; + + if ($this->isAdmin() || $this->getUser() == $recipient) { + $authorized = true; + } + + return $authorized; + } + public function getHeader() { $this->log("getHeader", 4);