Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1174397
D192.id478.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Oct 2, 10:19 AM
Size
924 B
Mime Type
text/x-diff
Expires
Fri, Oct 3, 10:19 AM (18 h, 44 m)
Engine
blob
Format
Raw Data
Handle
761377
Attached To
D192: MINC-145 - Modernize "orditems:LinkRemoveFromCart" tag
D192.id478.diff
View Options
Index: modules/in-commerce/units/orders/orders_tag_processor.php
===================================================================
--- modules/in-commerce/units/orders/orders_tag_processor.php
+++ modules/in-commerce/units/orders/orders_tag_processor.php
@@ -74,7 +74,17 @@
function Orditems_LinkRemoveFromCart($params)
{
- return $this->Application->HREF($this->Application->GetVar('t'), '', Array('pass' => 'm,orditems,ord', 'ord_event' => 'OnRemoveFromCart', 'm_cat_id'=>0));
+ $params['m_cat_id'] = 0;
+ $params['ord_event'] = 'OnRemoveFromCart';
+
+ if ( !isset($params['pass']) ) {
+ $params['pass'] = 'm,orditems,ord';
+ }
+
+ // Remove parameters, that indicate from where this aggregated tag was called.
+ unset($params['PrefixSpecial'], $params['original_tag']);
+
+ return $this->Application->ProcessParsedTag('m', 'Link', $params);
}
function Orderitems_ProductLink($params)
Event Timeline
Log In to Comment