Uploaded image for project: 'Jetspeed (Retired)'
  1. Jetspeed (Retired)
  2. JS1-362

[FIX] Customizing portlet logic broken

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Resolution: Fixed
    • 1.4b5-dev / CVS
    • None
    • Customizer
    • None
    • Operating System: Other
      Platform: Other
    • 21634

    Description

      Based off a report by kylin.

      boolean changeRequested = ( (params == null) || (newSkinName == null) ||
      (newSecurityParent == null) || (newTitle == null));

      if ((p==null) || (changeRequested = false ))

      should be replace by

      boolean changeRequested = ( (params != null) || (newSkinName != null) ||
      (newSecurityParent != null) || (newTitle != null));

      if ((p==null) || (changeRequested == false ))

      Attachments

        Activity

          People

            Unassigned Unassigned
            caius1440@hotmail.com Jeremy Ford
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: