Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Olivier Bossaer 1 post 71 karma points c-trib
    Jun 15, 2016 @ 08:43
    Olivier Bossaer
    0

    Hello,

    I'm migrating an Umbraco from 7.2.6->7.3.0.

    After migration, the web site and the Umbraco backoffice seems to work.

    But, when I republish an existing page or if I'm making an new one with the Rich Text Editor control, the content disapear from the web site.

    After searching for a reason, it appears that the stored XML has changed.

    Initial:

    {
      "name": "One colonne",
      "sections": [
        {
          "grid": 12,
          "rows": [
            {
              "name": "One colonne",
              "areas": [
                {
                  "grid": 12,
                  "controls": [
                    {
                      "value": "<p>text</p>",
                      "editor": {
                         "name": "Rich text editor",
                         "alias": "rte",
                         "view": "rte",
                         "render": null,
                         "icon": "icon-article",
                         "config": {}
                      }
                    }
                  ]
                }
              ],
              "id": "712964ee-5ef7-2186-bd19-a4d9be855222"
            }
          ]
        }
      ]
    }
    

    After republish:

    {
          "name": "One colonne",
          "sections": [
            {
              "grid": 12,
              "rows": [
                {
                  "name": "One colonne",
                  "areas": [
                    {
                      "grid": 12,
                      "controls": [
                        {
                          "value": "<p>text</p>",
                          "editor": {
                            "alias": "rte"
                          }
                        }
                      ]
                    }
                  ],
                  "id": "712964ee-5ef7-2186-bd19-a4d9be855222"
                }
              ]
            }
          ]
    
    }
    

    The Editor part loose everything except the alias. The content of grid.editor.config.js still contains:

       [
            {
                "name": "Rich text editor",
                "alias": "rte",
                "view": "rte",
                "icon": "icon-article"
            },
        ...
    ]
    

    I don't find any reference to this issue. Any idea?

    Thank you.

    Olivier

Please Sign in or register to post replies

Write your reply to:

Draft