Quote:
Originally Posted by nhawk
Save the new phrase in the database phrase table.
Code:
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "phrase
SET text = '" . $newtext . "'
WHERE varname = '" . $yourphrasename . "'
");
At least I think that will work. It might not if the xml file is read every time the menu is loaded. I haven't checked.
|
I am taking a look at the phrase tables now, didn't think about setting it from the database..what about if they rebuild the bitfields for any reason, as you said if it's in the file would it stay the same??
Testing now...
--------------- Added [DATE]1312240116[/DATE] at [TIME]1312240116[/TIME] ---------------
OK well it changed it in the table but not in the actual menu...weird...
I refresh the page and it still says Contest 2
I am using this file to test and I can verify it changes the phrase text because I see it in the SQL table in phpmyadmin.
PHP Code:
<?php
require_once('./global.php');
$yourphrasename = 'cotw_cpnav_contest2';
$newtext = 'Avatar Of The Week';
$vbulletin->db->query_write("UPDATE " . TABLE_PREFIX . "phrase
SET text = '" . $newtext . "'
WHERE varname = '" . $yourphrasename . "'
");
?>
--------------- Added [DATE]1312240360[/DATE] at [TIME]1312240360[/TIME] ---------------
And I can also verify that the phrase changed because I see it in the phrase manager... still same though in the actual menu in admin cp, still reads: Contest 2...