Skip to content

Commit 9d1cb92

Browse files
Resolves smartstore#1060 Html.Partial() > Html.RenderPartial()
1 parent d4aedcb commit 9d1cb92

204 files changed

Lines changed: 905 additions & 791 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/Plugins/SmartStore.AmazonPay/Views/AmazonPay/Configure.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</div>
2424
</div>
2525

26-
@Html.Action("StoreScopeConfiguration", "Setting", new { area = "Admin" })
26+
@{ Html.RenderAction("StoreScopeConfiguration", "Setting", new { area = "Admin" }); }
2727

2828
@using (Html.BeginForm())
2929
{

src/Plugins/SmartStore.AmazonPay/Views/AmazonPayCheckout/PaymentMethod.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111

1212
@section orderProgress{
13-
@Html.Action("CheckoutProgress", "Checkout", new { step = CheckoutProgressStep.Payment, area = "" })
13+
@{ Html.RenderAction("CheckoutProgress", "Checkout", new { step = CheckoutProgressStep.Payment, area = "" }); }
1414
}
1515

1616
<div class="page payment-method-page">

src/Plugins/SmartStore.AmazonPay/Views/AmazonPayCheckout/ShippingAddress.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111

1212
@section orderProgress{
13-
@Html.Action("CheckoutProgress", "Checkout", new { step = CheckoutProgressStep.Address, area = "" })
13+
@{ Html.RenderAction("CheckoutProgress", "Checkout", new { step = CheckoutProgressStep.Address, area = "" }); }
1414
}
1515

1616
<div class="page shipping-address-page">

src/Plugins/SmartStore.AmazonPay/Views/AmazonPayShoppingCart/MiniShoppingCart.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
</div>
1010
</div>
1111

12-
@Html.Partial("ScriptingLoginButton", Model)
12+
@{ Html.RenderPartial("ScriptingLoginButton", Model); }

src/Plugins/SmartStore.AmazonPay/Views/AmazonPayShoppingCart/OrderReviewData.cshtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
@model SmartStore.AmazonPay.Models.AmazonPayViewModel
44

55
@{
6-
Html.AddCssFileParts(true, Url.Content("~/Plugins/SmartStore.AmazonPay/Content/smartstore.amazonpay.css"));
6+
Html.AddCssFileParts(true, Url.Content("~/Plugins/SmartStore.AmazonPay/Content/smartstore.amazonpay.css"));
77
}
88

99
<div class="order-review-data-box">
1010
<div class="row-fluid">
1111

1212
@if (Model.IsShippable)
13-
{
13+
{
1414
<div class="amazon-pay-address-widget span12">
1515
<div class="block block-bordered">
1616
<div class="block-title">
@@ -22,7 +22,7 @@
2222
</div>
2323
</div>
2424
</div>
25-
}
25+
}
2626

2727
<div class="amazon-pay-wallet-widget span12">
2828
<div class="block block-bordered">
@@ -56,4 +56,4 @@
5656

5757
<div class="clear"></div>
5858

59-
@Html.Partial("ScriptingReadWidgets", Model)
59+
@{ Html.RenderPartial("ScriptingReadWidgets", Model); }

src/Plugins/SmartStore.AmazonPay/Views/AmazonPayShoppingCart/ShoppingCart.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
</div>
1919
</div>
2020

21-
@Html.Partial("ScriptingLoginButton", Model)
21+
Html.RenderPartial("ScriptingLoginButton", Model);
2222
}

src/Plugins/SmartStore.DevTools/Views/DevTools/Configure.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@model SmartStore.DevTools.ProfilerSettings
22
@using SmartStore.Web.Framework;
33

4-
@Html.Action("StoreScopeConfiguration", "Setting", new { area = "Admin" })
4+
@{ Html.RenderAction("StoreScopeConfiguration", "Setting", new { area = "Admin" }); }
55

66
@using (Html.BeginForm())
77
{

src/Plugins/SmartStore.DevTools/Views/MyCheckout/MyBillingAddress.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313

1414
@section orderProgress{
15-
@Html.Action("CheckoutProgress", "Checkout", new { step = CheckoutProgressStep.Address, area = "" })
15+
@{ Html.RenderAction("CheckoutProgress", "Checkout", new { step = CheckoutProgressStep.Address, area = "" }); }
1616
}
1717

1818
<h1>Hallo Welt</h1>

src/Plugins/SmartStore.FacebookAuth/Views/ExternalAuthFacebook/Configure.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div class="clear"></div>
1313

14-
@Html.Action("StoreScopeConfiguration", "Setting", new { area = "Admin" })
14+
@{ Html.RenderAction("StoreScopeConfiguration", "Setting", new { area = "Admin" }); }
1515

1616
@Html.ValidationSummary(false)
1717

src/Plugins/SmartStore.GoogleAnalytics/Views/WidgetsGoogleAnalytics/Configure.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@Html.Raw(@T("Plugins.Widgets.GoogleAnalytics.AdminInstruction"))
99
</div>
1010

11-
@Html.Action("StoreScopeConfiguration", "Setting", new { area = "Admin" })
11+
@{ Html.RenderAction("StoreScopeConfiguration", "Setting", new { area = "Admin" }); }
1212

1313
@using (Html.BeginForm())
1414
{

0 commit comments

Comments
 (0)