Change default availablity of form builder wyswyig components
authorMatthias Schmidt <gravatronics@live.com>
Fri, 22 Mar 2019 15:09:36 +0000 (16:09 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Fri, 22 Mar 2019 15:09:36 +0000 (16:09 +0100)
See #2852

wcfsetup/install/files/lib/system/form/builder/container/wysiwyg/WysiwygFormContainer.class.php
wcfsetup/install/files/lib/system/form/builder/field/wysiwyg/WysiwygFormField.class.php

index 2052275ee90c124ea8737cc03f57c502d2b7d690..87ee088ef20eae6487a82451aa598ec723a258d5 100644 (file)
@@ -112,7 +112,7 @@ class WysiwygFormContainer extends FormContainer {
         * is `true` if smilies are supported for this container, otherwise `false`
         * @var boolean
         */
-       protected $supportSmilies = false;
+       protected $supportSmilies = true;
        
        /**
         * actual wysiwyg form field
@@ -509,7 +509,7 @@ class WysiwygFormContainer extends FormContainer {
        /**
         * Sets if quotes are supported by the editor field and returns this form container.
         * 
-        * By default, quotes are supported.
+        * By default, quotes are not supported.
         * 
         * @param       boolean         $supportMention
         * @return      WysiwygFormContainer            this form container
@@ -528,7 +528,7 @@ class WysiwygFormContainer extends FormContainer {
        /**
         * Sets if smilies are supported for this form container and returns this form container.
         * 
-        * By default, smilies are not supported.
+        * By default, smilies are supported.
         * 
         * @param       boolean         $supportSmilies
         * @return      WysiwygFormContainer            this form container
index 628118fff3fc5d1eca82a9701dc2802874201426..5c2e880e0c159df4d9658e6b2b00d4f07ef23209 100644 (file)
@@ -332,7 +332,7 @@ class WysiwygFormField extends AbstractFormField implements IMaximumLengthFormFi
        /**
         * Returns `true` if the form field supports quotes and returns `false` otherwise.
         * 
-        * By default, quotes are supported.
+        * By default, quotes are not supported.
         * 
         * @return      boolean
         */