Kyberia v2.3 - 1st revision from SVN (Without patches of kyberia.sk team)
[mirrors/Kyberia-bloodline.git] / inc / eventz / configure_template_id.inc
index 3bd0b008d4b2384345db9ef3811c855886798605..624eb30098ffd2b292b0574be59f055983cde598 100644 (file)
@@ -1,16 +1,10 @@
 <?php
-/* This program is free software. It comes without any warranty, to
- * the extent permitted by applicable law. You can redistribute it
- * and/or modify it under the terms of the Do What The Fuck You Want
- * To Public License, Version 2, as published by Sam Hocevar. See
- * http://sam.zoy.org/wtfpl/COPYING for more details. */
-
        function configure_template_id() {
                global $db,$error,$node;
                $node_id=$node['node_id'];
                $user_id=$_SESSION['user_id'];
 
-               if ($node['node_permission']=='owner') {
+               if (($node['node_permission']=='owner') || ($node['node_permission']=='master')) {
 
                        if (is_numeric($_POST['template_id'])) $template_id=$_POST['template_id'];
                        else {
@@ -32,6 +26,9 @@
                                $q="update nodes set template_id='$template_id' where node_id='$node_id'";
                                $db->query($q);
                        }
+               }else{
+                       $error=$error_messages['EVENT_PERMISSION_ERROR'];
+                       return false;
                }
        }
 ?>
\ No newline at end of file
This page took 0.135878 seconds and 4 git commands to generate.