Overview
Comment:Make sure we redirect after reload to the correct URL
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA3-256: e03974555b0176daff9725dca80beab58bb458562dcfc8cb86ece32017fba8f3
User & Date: bohwaz on 2022-03-15 00:41:54
Other Links: branch diff | manifest | tags
Context
2022-03-15
00:42
Remove uninstalled presets check-in: 0c4a61cd92 user: bohwaz tags: dev
00:41
Make sure we redirect after reload to the correct URL check-in: e03974555b user: bohwaz tags: dev
00:41
Upgrade references to users table check-in: 1fdf5f2c77 user: bohwaz tags: dev
Changes

Modified src/include/lib/Garradin/Form.php from [7d0dc0a0a9] to [f8d6d1ac6f].

36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
		}

		try {
			call_user_func($fn);

			if (null !== $redirect) {
				if (array_key_exists('_dialog', $_GET)) {
					Utils::reloadParentFrame();
				}

				Utils::redirect($redirect);
			}

			return true;
		}







|







36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
		}

		try {
			call_user_func($fn);

			if (null !== $redirect) {
				if (array_key_exists('_dialog', $_GET)) {
					Utils::reloadParentFrame($redirect);
				}

				Utils::redirect($redirect);
			}

			return true;
		}