psql db schema test
[mirrors/Kyberia-bloodline.git] / inc / eventz / accesslist.inc
diff --git a/inc/eventz/accesslist.inc b/inc/eventz/accesslist.inc
deleted file mode 100644 (file)
index fce4b7a..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 accesslist() {
-               global $db,$error,$node;
-               $node_id=$node['node_id'];
-               $access=explode(";",$_POST['access']);
-
-                if ($node['node_permission']!=('owner' OR 'master' OR 'op')) {
-                        $error=$error_messages['EVENT_PERMISSION_ERROR'];
-                        return false;
-                }
-
-
-               $db->query("update node_access set node_permission='' where node_id=$node_id and node_permission='access'");
-               foreach ($access as $acc) {
-                       $set=$db->query("select user_id from users where login='$acc'");
-                       $set->next();
-                       if ($set->getString('user_id')) {
-                               $q="update node_access set node_permission='access' where node_id=$node_id and user_id='".$set->getString('user_id')."'";
-                               echo $q;
-                               $changed=$db->update($q);
-                               if (!$changed) {
-                                       $q="insert into node_access set node_permission='access',node_id=$node_id,user_id=".$set->getString('user_id');
-                                       $db->query($q);
-                               }
-                               log::log('add access',$node_id,'ok',$acc);
-                       }
-                       else { $error .= "$acc does not exist..."; }
-               }
-       }
-?>
\ No newline at end of file
This page took 0.095673 seconds and 4 git commands to generate.