コード例 #1
0
ファイル: admin.contact.php プロジェクト: cwcw/cms
/** PT
* Cancels editing and checks in the record
* @int the contact id
*/
function cancelContact($cid)
{
    $row = new mosContact($database);
    $row->bind($_POST);
    $row->checkin();
    mosRedirect('index2.php?option=com_contact');
}
コード例 #2
0
ファイル: admin.contact.php プロジェクト: jwest00724/mambo
/** PT
* Cancels editing and checks in the record
*/
function cancelContact()
{
    global $database;
    $row = new mosContact($database);
    $row->bind($_POST);
    // sanitize
    $row->id = intval($row->id);
    $row->checkin();
    mosRedirect('index2.php?option=com_contact');
}
コード例 #3
0
/** PT
* Cancels editing and checks in the record
*/
function cancelContact()
{
    global $database;
    josSpoofCheck();
    $row = new mosContact($database);
    $row->bind($_POST);
    $row->checkin();
    mosRedirect('index2.php?option=com_contact');
}