-
-
Save 3D-I/3fb868cbb148ce659806c5b44380b76d to your computer and use it in GitHub Desktop.
Revisions
-
cYbercOsmOnauT created this gist
Jun 19, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ public function expected_url($path = '') { $path = empty($path) ? $this->phpbb_root_path : $path; $params = array(); // Check the params by the order they are in the request foreach($this->request->variable_names(\phpbb\request\request_interface::GET) AS $get) { $def = $this->seo_opt['zero_dupe']['redir_def'][$get]; if (($this->request->is_set($get, \phpbb\request\request_interface::GET) && $def['keep']) || !empty($def['force'])) { $params[$get] = $def['val']; if (!empty($def['hash'])) { $params['#'] = $def['hash']; } } } $this->page_url = append_sid($path . $this->seo_opt['req_file'] . '.' . $this->php_ext, $params, true, 0); return $this->page_url; }