$fixed[0] = $ident;
// inform plugins about renumbering of ids
- do_hook('options_identities_renumber', $temp=array(&$id, 'default'));
+ $temp = array(&$id, 'default');
+ do_hook('options_identities_renumber', $temp);
continue 2;
} else {
$tmp_hold = $ident;
// inform plugins about renumbering of ids
- do_hook('options_identities_renumber', $temp=array(&$id , $id - 1));
+ $temp = array(&$id , $id - 1);
+ do_hook('options_identities_renumber', $temp);
continue 2;
} else {
if ($key == $id) {
// inform plugins about deleted id
- do_hook('options_identities_process', $temp=array(&$action, &$id));
+ $temp = array(&$action, &$id);
+ do_hook('options_identities_process', $temp);
continue 2;
} else {
* be used to detect modified hook. Older hook does not
* provide information that can be useful for plugins.
*/
- do_hook('options_identities_process', $temp=array(&$action, &$id));
+ $temp = array(&$action, &$id);
+ do_hook('options_identities_process', $temp);
$fixed[$i] = $ident;