Beispiel #1
0
 function red_group_delete()
 {
     if (check_ajax_referer('redirection-items')) {
         if (preg_match_all('/=(\\d*)/', $this->post['checked'], $items) > 0) {
             foreach ($items[1] as $group) {
                 Red_Group::delete(intval($group));
             }
         }
     }
 }