Quote:
Originally Posted by Andreas
PHP Code:
$db->query_write("UPDATE " . TABLE_PREFIX . "setting SET value = 'foobar' WHERE varname = 'banned_users'");
require_once(DIR . '/includes/adminfunctions.php');
build_options();
You could also just directy change the data in table datastore, but you must keep in mind that it theoreticaally could be changed back at any time if it's not written to table datastore as well.
Also keep datastore caches in mind.
|
Ahhh thank you very much. While I was waiting for a reply I reverse engineered some of the code and did the query to the setting table like you listed above, but I never got to the point where vB actually updated its values to use the changes.
Thanks again.