1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

#3733 - Added new 'Forum icon' field

- Renamed forum image to  "Image" (LAN_IMAGE instead of LAN_ICON)
- Added new field forum_icon (LAN_ICON)
- Icon can be used / rendered using {FORUMICON} shortcode in template
- database update requires
- v1 to v2 update needs testing (will do shortly)
This commit is contained in:
Tijn Kuyper
2019-06-06 16:02:46 +02:00
parent 60b7f3ae6d
commit c24ade3b9c
4 changed files with 23 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ CREATE TABLE forum (
`forum_name` varchar(250) NOT NULL default '',
`forum_description` text,
`forum_image` varchar(250) DEFAULT NULL,
`forum_icon` varchar(250) DEFAULT NULL,
`forum_parent` int(10) unsigned NOT NULL default '0',
`forum_sub` int(10) unsigned NOT NULL default '0',
`forum_datestamp` int(10) unsigned NOT NULL default '0',