Uploaded image for project: 'eZ Publish / Platform'
  1. eZ Publish / Platform
  2. EZP-16829

Bug in user/preferences

    XMLWordPrintable

Details

    Description

      There is a bug in user/ezpreferences.php line 67

      Wrong:

      if ( $http->hasPostVariable( 'RedirectURIAfterSet' ) )
      {
          $url = $http->hasPostVariable( 'RedirectURIAfterSet' );
      }
      

      Right:

      if ( $http->hasPostVariable( 'RedirectURIAfterSet' ) )
      {
          $url = $http->postVariable( 'RedirectURIAfterSet' );
      }
      

      Attachments

        Activity

          People

            gl gl
            gl gl
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: