psql db schema test
[mirrors/Kyberia-bloodline.git] / inc / eventz / configure_template_id.inc
diff --git a/inc/eventz/configure_template_id.inc b/inc/eventz/configure_template_id.inc
deleted file mode 100644 (file)
index 3bd0b00..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-<?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 (is_numeric($_POST['template_id'])) $template_id=$_POST['template_id'];
-                       else {
-                               $error=$error_messages['INCORRECT_TEMPLATE_ID'];
-                               return false;
-                       }
-
-                       if ($_POST['apply_on_vector']) {
-                               $vector=$node['node_vector'];
-                               if (empty($vector))  {
-                                       $error=$error_messages['INCORRECT_VECTOR'];
-                                       return false;
-                               }
-                               $q="update nodes set template_id='$template_id' where node_vector like '$vector%'";
-                               $db->query($q);
-                       }
-
-                       else {
-                               $q="update nodes set template_id='$template_id' where node_id='$node_id'";
-                               $db->query($q);
-                       }
-               }
-       }
-?>
\ No newline at end of file
This page took 0.090637 seconds and 4 git commands to generate.