We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d1ab80 commit bc42292Copy full SHA for bc42292
1 file changed
src/vendor/CanUrl.php
@@ -69,6 +69,9 @@ class CanUrl extends Component implements BootstrapInterface
69
public $is_track_pjax = false;
70
public $is_track_flash = false;
71
public $is_soret_query_params = false;
72
+
73
+ public $is_redirrect = true;
74
75
protected $_scheme;
76
protected $_user = '';
77
protected $_pass = '';
@@ -189,6 +192,10 @@ public function GETquery()
189
192
public function if_need_then_send_redirect($is_final, $current_url = null)
190
193
{
191
194
195
+ if ($this->is_redirrect !== true) {
196
+ return false;
197
+ }
198
199
if (!$this->is_tracked()) {
200
return false;
201
}
0 commit comments