clipbucket/upload/actions/update_phrase.php

23 lines
335 B
PHP
Raw Normal View History

2013-10-07 12:17:06 +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();
2014-02-12 05:34:48 +00:00
$phrase_id = $_POST['pk'];
2013-10-07 12:17:06 +00:00
$value = $_POST['value'];
$lang_obj->update_phrase($phrase_id,$value);
2013-10-07 12:17:06 +00:00
echo ($value);
2014-02-12 05:34:48 +00:00
2013-10-07 12:17:06 +00:00
?>