1

Pyrocms v2.1

「フォーマット済み」テキストタイプが選択されている場合、wysiwyg (ckeditor) に改行/空白が追加されます。これを回避する方法はありますか?

予想されるコードは次のようになります。

class person {
    public $name;
    function __construct($persons_name) {
            $this->name = $persons_name;
    }

    function set_name($new_name) {
            $this->name = $new_name;
    }

    function get_name() {
            return $this->name;
   }

}

しかし、最終的には次のようになります。

class person {

    public $name;

    function __construct($persons_name) {

            $this->name = $persons_name;

    }


    function set_name($new_name) {

            $this->name = $new_name;

    }


    function get_name() {

            return $this->name;

   }

}

4

1 に答える 1

1

CKEditor 3.4.2 のバグのように見え、3.5.1 で修正されました。

バグケース: http://dev.ckeditor.com/ticket/6630

修正: http://dev.ckeditor.com/changeset/6321

于 2012-10-17T19:42:21.940 に答える