Reviewed: https://reviews.mahara.org/11041 Committed: https://git.mahara.org/mahara/mahara/commit/0e7b0f085787667c1a7a05f690987f1ccf7e9af8 Submitter: Robert Lyon ([email protected]) Branch: 20.04_STABLE
commit 0e7b0f085787667c1a7a05f690987f1ccf7e9af8 Author: Philippe Adrian <[email protected]> Date: Tue Jun 9 10:22:14 2020 +1200 Bug 1882103: Wrong redirect when creating Pages when Mahara is in a subdir -added root directory to redirect Change-Id: I7037c2b01a84a146bc6ffc6961e4435115dd2c25 (cherry picked from commit f00091e04d476315fc83ff36657399bee08eaa95) -- You received this bug notification because you are a member of Mahara Contributors, which is subscribed to Mahara. Matching subscriptions: Subscription for all Mahara Contributors -- please ask on #mahara-dev or mahara.org forum before editing or unsubscribing it! https://bugs.launchpad.net/bugs/1882103 Title: Wrong redirect when creating Pages when Mahara is in a subdir Status in Mahara: Fix Committed Status in Mahara 19.04 series: New Status in Mahara 19.10 series: New Status in Mahara 20.04 series: New Status in Mahara 20.10 series: Fix Committed Bug description: Referencing Bug #1843537 (https://bugs.launchpad.net/mahara/+bug/1843537) In Mahara 20.04 this Bug seems to affect the creation of pages. When trying to create a new page while Mahara is installed in a subdirectory (https://dns/mahara), after saving the newly created page it is created successfully but the user is redirected to an error page because wwwroot is missing. The problem seems to be in: mahara/htdocs/view/editlayout.php in Line 441 Much like in the CSV Upload error it does not include the root directory The original: redirect('/view/blocks.php?id=' . $view->get('id')); Ammended: redirect(get_config('wwwroot') . 'view/blocks.php?id=' . $view->get('id')); After changing this, the saving progress redirects to the correct page. Greetings from Germany, Philippe To manage notifications about this bug go to: https://bugs.launchpad.net/mahara/+bug/1882103/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~mahara-contributors Post to : [email protected] Unsubscribe : https://launchpad.net/~mahara-contributors More help : https://help.launchpad.net/ListHelp

