From e29f02659a5328a52042fb43bd3baad321ee3e91 Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Thu, 23 Jun 2011 19:45:28 +0000 Subject: administrators can now approve device page submitted by anonymous users --- h-source/Application/Controllers/GenericController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'h-source/Application/Controllers/GenericController.php') diff --git a/h-source/Application/Controllers/GenericController.php b/h-source/Application/Controllers/GenericController.php index 92831f7..949f3ae 100644 --- a/h-source/Application/Controllers/GenericController.php +++ b/h-source/Application/Controllers/GenericController.php @@ -472,7 +472,7 @@ class GenericController extends BaseController $data['tree'] = null; $data['isDeleted'] = false; - $data['md_javascript'] = "moderator_dialog(\"devicehide\",\"device\");moderator_dialog(\"deviceshow\",\"device\");"; + $data['md_javascript'] = "moderator_dialog(\"devicehide\",\"device\");moderator_dialog(\"deviceshow\",\"device\");moderator_dialog(\"deviceapprove\",\"device_app\");"; if ($this->mod->checkType($clean['id_hard'])) { @@ -489,6 +489,7 @@ class GenericController extends BaseController $data['title'] = $data['ne_name'].' - '.Website::$generalName; $data['tree'] = $this->getSpecHardLink() . " » ".$data['ne_name'].""; $data['isDeleted'] = $this->m['HardwareModel']->isDeleted($clean['id_hard']); + $data['isApproved'] = strcmp($data['table'][0]['hardware']['approved'],'yes') === 0 ? true : false; if ($data['isDeleted']) { -- cgit v1.2.3