---

Discussion of general topics related to the new version and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
Forum rules
Discussion of general topics related to the new release and its place in the world. Don't discuss new features, report bugs, ask for support, et cetera. Don't use this to spam for other boards or attack those boards!
Post Reply
EmmaBlack
Registered User
Posts: 9
Joined: Mon Jan 29, 2007 5:15 pm

---

Post by EmmaBlack »

---
Last edited by EmmaBlack on Mon Jun 27, 2011 10:55 am, edited 1 time in total.

EmmaBlack
Registered User
Posts: 9
Joined: Mon Jan 29, 2007 5:15 pm

Post by EmmaBlack »

---
Last edited by EmmaBlack on Mon Jun 27, 2011 10:55 am, edited 1 time in total.

EmmaBlack
Registered User
Posts: 9
Joined: Mon Jan 29, 2007 5:15 pm

Post by EmmaBlack »

---
Last edited by EmmaBlack on Mon Jun 27, 2011 10:55 am, edited 1 time in total.

User avatar
Nicholas the Italian
Registered User
Posts: 659
Joined: Mon Nov 20, 2006 11:19 pm
Location: 46°8' N, 12°13' E
Contact:

Re: $u_action

Post by Nicholas the Italian »

For example

functions.php 1911

Code: Select all

function confirm_box($check, $title = '', $hidden = '', $html_body = 'confirm_body.html', $u_action = '')
functions.php 1984

Code: Select all

$u_action = reapply_sid($use_page);
$u_action .= ((strpos($u_action, '?') === false) ? '?' : '&') . 'confirm_key=' . $confirm_key;
functions_module.php 429

Code: Select all

$this->module->u_action = append_sid("{$phpbb_admin_path}index.$phpEx", "i={$this->p_name}") . (($icat) ? '&icat=' . $icat : '') . "&mode={$this->p_mode}";
functions_module.php 437

Code: Select all

$this->module->u_action = $module_url;
functions_module.php 441

Code: Select all

$this->module->u_action = $phpbb_root_path . (($user->page['page_dir']) ? $user->page['page_dir'] . '/' : '') . $user->page['page_name'];
functions_module.php 444

Code: Select all

$this->module->u_action = append_sid($this->module->u_action, "i={$this->p_name}") . (($icat) ? '&icat=' . $icat : '') . "&mode={$this->p_mode}";
functions_module.php 450

Code: Select all

$this->module->u_action .= $this->module_ary[$this->active_module_row_id]['url_extra'];
$this->module->u_action = append_sid($this->module->u_action, "i={$this->p_name}") . (($icat) ? '&icat=' . $icat : '') . "&mode={$this->p_mode}";

EmmaBlack
Registered User
Posts: 9
Joined: Mon Jan 29, 2007 5:15 pm

Post by EmmaBlack »

---

Post Reply