mirror of
https://framagit.org/framasoft/framadate/framadate
synced 2026-07-27 11:43:49 +00:00
Merge branch 'fix-#283' into 'develop'
Fix URL Routing for actions Closes #283 See merge request framasoft/framadate!249
This commit is contained in:
commit
6ed3a0c3cf
1 changed files with 3 additions and 1 deletions
|
|
@ -84,11 +84,13 @@ class Utils {
|
|||
* @param string $id The poll's id
|
||||
* @param bool $admin True to generate an admin URL, false for a public one
|
||||
* @param string $vote_id (optional) The vote's unique id
|
||||
* @param null $action
|
||||
* @param null $action_value
|
||||
* @return string The poll's URL.
|
||||
*/
|
||||
public static function getUrlSondage($id, $admin = false, $vote_id = '', $action = null, $action_value = null) {
|
||||
// URL-Encode $action_value
|
||||
$action_value = $action_value ? null : Utils::base64url_encode($action_value);
|
||||
$action_value = $action_value ? Utils::base64url_encode($action_value) : null;
|
||||
|
||||
if (URL_PROPRE) {
|
||||
if ($admin === true) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue