PluginProbe
User Access Manager / 2.3.2
User Access Manager v2.3.2
2.3.20 2.3.19 2.3.18 2.3.17 2.3.16 2.3.15 2.3.14 2.3.13 trunk 0.6 0.6.1 0.6.2 0.7 0.7 Beta 0.7.0.1 0.8 0.8.0.1 0.8.0.2 0.9 0.9.1 0.9.1.1 0.9.1.2 0.9.1.3 0.9.1.4 1.0 All 136 releases
← All changes | src/Config/MainConfig.php +1 -9 2.3.162.3.2 View file →
@@ -39,9 +39,9 @@
39 39 $id = 'redirect';
40 40 $configParameters[$id] = $this->configParameterFactory->createSelectionConfigParameter(
41 41 $id,
42 42 'false',
43 - ['false', 'blog', 'login', 'custom_page', 'custom_url', 'origin']
43 + ['false', 'blog', 'login', 'custom_page', 'custom_url']
44 44 );
45 45
46 46 $id = 'redirect_custom_page';
47 47 $configParameters[$id] = $this->configParameterFactory->createStringConfigParameter($id);
@@ -48,11 +48,8 @@
48 48
49 49 $id = 'redirect_custom_url';
50 50 $configParameters[$id] = $this->configParameterFactory->createStringConfigParameter($id);
51 51
52 - $id = 'append_redirect_to_parameter';
53 - $configParameters[$id] = $this->configParameterFactory->createBooleanConfigParameter($id);
54 -
55 52 $id = 'lock_recursive';
56 53 $configParameters[$id] = $this->configParameterFactory->createBooleanConfigParameter($id, true);
57 54
58 55 $id = 'authors_has_access_to_own';
@@ -336,13 +333,8 @@
336 333
337 334 public function getRedirectCustomUrl(): ?string
338 335 {
339 336 return $this->getParameterValue('redirect_custom_url');
340 - }
341 -
342 - public function appendRedirectToParameter(): bool
343 - {
344 - return (bool) $this->getParameterValue('append_redirect_to_parameter');
345 337 }
346 338
347 339 public function lockRecursive(): bool
348 340 {