Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / inc / eventz / set_type.inc
diff --git a/inc/eventz/set_type.inc b/inc/eventz/set_type.inc
new file mode 100644 (file)
index 0000000..0fbd48f
--- /dev/null
@@ -0,0 +1,19 @@
+<?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 set_type() {
+       global $node,$db;
+       $node_type=$_POST['node_type'];
+       $node_id=$node['node_id'];
+       $q="update nodes set node_type='$node_type' where node_id='$node_id'";
+       echo $q;
+       $db->query($q);
+
+}
+
+?>
\ No newline at end of file
This page took 0.563185 seconds and 4 git commands to generate.