File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
Version 0.3.3
2
2
Improvements:
3
3
4
+ * mysql character set update for emojis
4
5
* synfony deprecation fix
5
6
* public wiki link to board
6
7
* added Ukrainian translation
7
8
8
9
Bug fixes:
9
10
11
+ * Fix https://github.com/funktechno/kanboard-plugin-wiki/issues/39
10
12
* Fix https://github.com/funktechno/kanboard-plugin-wiki/issues/60
11
13
* Fix https://github.com/funktechno/kanboard-plugin-wiki/issues/56
12
14
* Fix `'max_size' => get_upload_max_size(),`
Original file line number Diff line number Diff line change 4
4
5
5
use PDO ;
6
6
7
- const VERSION = 8 ;
7
+ const VERSION = 9 ;
8
+
9
+ /**
10
+ * Allow unicode emojis in wikipages
11
+ * @param PDO $pdo
12
+ */
13
+ function version_9 (PDO $ pdo )
14
+ {
15
+ $ pdo ->exec ('ALTER TABLE wikipage CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ' );
16
+ $ pdo ->exec ('ALTER TABLE wikipage_editions CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ' );
17
+ $ pdo ->exec ('ALTER TABLE wikipage_has_files CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ' );
18
+ }
8
19
9
20
function version_8 (PDO $ pdo )
10
21
{
You can’t perform that action at this time.
0 commit comments