Page MenuHomeIn-Portal Phabricator

D97.id232.diff
No OneTemporary

File Metadata

Created
Sat, Jun 28, 7:48 PM

D97.id232.diff

Index: core/units/admin/admin_tag_processor.php
===================================================================
--- core/units/admin/admin_tag_processor.php
+++ core/units/admin/admin_tag_processor.php
@@ -493,8 +493,16 @@
}
if ($pass_through) {
- // add pass_through to selector url if any
- $params['pass_through'] = implode(',', array_keys($pass_through));
+ // Add pass_through to selector url if any.
+ $pass_through_string = implode(',', array_keys($pass_through));
+
+ if ( isset($params['pass_through']) ) {
+ $params['pass_through'] .= ',' . $pass_through_string;
+ }
+ else {
+ $params['pass_through'] = $pass_through_string;
+ }
+
$params = array_merge($params, $pass_through);
}
@@ -1193,4 +1201,4 @@
return $this->Application->ParseBlock($block_params);
}
- }
\ No newline at end of file
+ }

Event Timeline