Revision 602
Added by doc almost 18 years ago
| trunk/CHANGELOG | ||
|---|---|---|
| 12 | 12 |
|
| 13 | 13 |
------------------------------------- 2.7.0 ------------------------------------- |
| 14 | 14 |
26-Jan-2008 Christian Sommer |
| 15 |
! changed WYSIWYG content field from text to longtext (allows more than 65'534 characters) |
|
| 15 | 16 |
+ Added Javascript Admin module (developed by Stepan Riha, adapted for WB2.7 by Swen Uth) |
| 16 | 17 |
26-Jan-2008 Matthias Gallas |
| 17 | 18 |
+ Added keywords to files where they are missing |
| trunk/wb/modules/wysiwyg/install.php | ||
|---|---|---|
| 30 | 30 |
$mod_wysiwyg = 'CREATE TABLE `'.TABLE_PREFIX.'mod_wysiwyg` ( ' |
| 31 | 31 |
. ' `section_id` INT NOT NULL DEFAULT \'0\',' |
| 32 | 32 |
. ' `page_id` INT NOT NULL DEFAULT \'0\',' |
| 33 |
. ' `content` TEXT NOT NULL ,' |
|
| 33 |
. ' `content` LONGTEXT NOT NULL ,'
|
|
| 34 | 34 |
. ' `text` TEXT NOT NULL ,' |
| 35 | 35 |
. ' PRIMARY KEY ( `section_id` ) ' |
| 36 | 36 |
. ' )'; |
Also available in: Unified diff
changed WYSIWYG content field from text to longtext (allows more than 65'534 characters)