<?php
/*
* Created on 03.05.2006 by *Camper*
*/
class page_Script_delete extends Page{
function init(){
$this->api->stickyGET('application_id');
$this->api->db->query("delete from script where id=".$_GET['id']);
$this->api->redirect('Application', array('application_id'=>$_GET['application_id']));
}
}