Commented out unused functions in database backend so we will not have to reimplement...
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / eventz / delete_friend.inc
CommitLineData
51ff3226 1<?php
2function delete_friend() {
d068d94b
H
3 if($_POST["delete_id"]) {
4 $sql = "delete from `nodes` where `node_id` = '{$_POST["delete_id"]}' and `external_link` = 'sessions://friend'";
5 $sql1 = "delete from `node_content` where `node_id` = '{$_POST["delete_id"]}'";
6 $db->query($sql);
7 $db->query($sql1);
8 return (true);
9 }
51ff3226 10}
This page took 0.222016 seconds and 4 git commands to generate.