Merged in patch for lang support

This commit is contained in:
jengo
2000-11-03 21:49:55 +00:00
parent f32802380c
commit ca327c919e
7 changed files with 471 additions and 18 deletions

View File

@ -207,8 +207,16 @@
cat_description text NOT NULL
)";
$db->query($sql);
$sql = "CREATE TABLE languages (
lang_id varchar(2) NOT NULL,
lang_name varchar(50) NOT NULL,
available varchar(3) NOT NULL DEFAULT 'No'
)";
$db->query($sql);
$currentver = "0.9.3pre7";
$currentver = "0.9.3pre8";
update_version_table();
?>