Quote:
Originally Posted by tommyxv
$DB_site->query("INSERT INTO " . TABLE_PREFIX . "settinggroup (grouptitle, displayorder, volatile) VALUES ('v3_articles', '2000', '0')");
$DB_site->query("INSERT INTO " . TABLE_PREFIX . "phrase (phraseid, languageid, varname, text, phrasetypeid) VALUES (NULL, '0', 'settinggroup_v3_articles', 'v3 Articles', '5000')");
|
Its difficult to say without knowing the rest of the code, however have you thought about
:
Running something like:
PHP Code:
DELETE FROM settinggroup where grouptitle='v3_articles'
and
PHP Code:
DELETE FROM phrase where varname='settinggroup_v3_articles' and text='v3 Articles'
Make sure your table prefixes are in there and I would do a backup first beofre you go in deleting things if you are unfamiliar with sql.
Also, since it looks like you are messing with the phrases, you will need to rebuild them by editing a phrase and then saving it.
On a side note - I dont see why its so important to remove these, its not like they are really taking up any space.