2009-08-25 12:16:42 +00:00
|
|
|
<?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['id'];
|
|
|
|
$value = $_POST['value'];
|
|
|
|
|
2010-06-24 07:05:52 +00:00
|
|
|
$lang_obj->update_phrase($phrase_id,'|no_mc|'.$value);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-10-15 15:50:26 +00:00
|
|
|
echo ($value);
|
2009-08-25 12:16:42 +00:00
|
|
|
?>
|