mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Introduce a global switch for smilies
git-svn-id: file:///svn/phpbb/trunk@345 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
3b10f25083
commit
2d0f44daf4
2 changed files with 2 additions and 0 deletions
|
@ -48,6 +48,7 @@ CREATE TABLE phpbb_config (
|
||||||
sitename varchar(100),
|
sitename varchar(100),
|
||||||
allow_html tinyint(1),
|
allow_html tinyint(1),
|
||||||
allow_bbcode tinyint(1),
|
allow_bbcode tinyint(1),
|
||||||
|
allow_smilies tinyint(1),
|
||||||
allow_sig tinyint(1),
|
allow_sig tinyint(1),
|
||||||
allow_namechange tinyint(1),
|
allow_namechange tinyint(1),
|
||||||
allow_theme_create tinyint(1),
|
allow_theme_create tinyint(1),
|
||||||
|
|
|
@ -94,6 +94,7 @@ CREATE TABLE phpbb_config (
|
||||||
sitename varchar(100) NOT NULL,
|
sitename varchar(100) NOT NULL,
|
||||||
allow_html int2 NOT NULL,
|
allow_html int2 NOT NULL,
|
||||||
allow_bbcode int2 NOT NULL,
|
allow_bbcode int2 NOT NULL,
|
||||||
|
allow_smilies int2 NOT NULL,
|
||||||
allow_sig int2 NOT NULL,
|
allow_sig int2 NOT NULL,
|
||||||
allow_namechange int2 NOT NULL,
|
allow_namechange int2 NOT NULL,
|
||||||
allow_theme_create int2 NOT NULL,
|
allow_theme_create int2 NOT NULL,
|
||||||
|
|
Loading…
Add table
Reference in a new issue