clipbucket/upload/actions/update_phrase.php
2014-02-12 05:34:48 +00:00

22 lines
345 B
PHP

<?php
/**
* This file is used to update
* language phrases
* Author : Arslan Hassan
* Since : 10 Aug, 2009
*/
require'../includes/admin_config.php';
$userquery->admin_login_check();
$phrase_id = $_POST['pk'];
$value = $_POST['value'];
$lang_obj->update_phrase($phrase_id,'|no_mc|'.$value);
echo ($value);
?>