Kyberia v2.3 - 1st revision from SVN (Without patches of kyberia.sk team)
[mirrors/Kyberia-bloodline.git] / inc / eventz / set_type.inc
CommitLineData
e586807d 1<?php
e586807d
H
2
3function set_type() {
4 global $node,$db;
5 $node_type=$_POST['node_type'];
6 $node_id=$node['node_id'];
7 $q="update nodes set node_type='$node_type' where node_id='$node_id'";
8 echo $q;
9 $db->query($q);
10
11}
12
13?>
This page took 0.133019 seconds and 4 git commands to generate.