From c15e79b50a1bf56ed32a5d8c8e322048c4613ed5 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Tue, 28 Aug 2012 12:36:47 -0400
Subject: [PATCH] Replaced explicit \VuFind\Cart calls with cart() view helper.

---
 themes/blueprint/templates/header.phtml        | 2 +-
 themes/blueprint/templates/layout/layout.phtml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/themes/blueprint/templates/header.phtml b/themes/blueprint/templates/header.phtml
index 0447332ec7a..3a734a1dba6 100644
--- a/themes/blueprint/templates/header.phtml
+++ b/themes/blueprint/templates/header.phtml
@@ -1,7 +1,7 @@
 <? $account = $this->layout()->account; ?>
 <a id="logo" href="<?=$this->url('home')?>"></a>
 <div id="headerRight">
-  <? $cart = \VuFind\Cart::getInstance(); if ($cart->isActive()): ?>
+  <? $cart = $this->cart(); if ($cart->isActive()): ?>
     <div id="cartSummary" class="cartSummary">
       <a id="cartItems" title="<?=$this->transEsc('View Book Bag')?>" class="bookbag" href="<?=$this->url('cart-home')?>"><strong><span><?=count($cart->getItems())?></span></strong> <?=$this->transEsc('items')?> <?=$cart->isFull() ? '(' .  $this->transEsc('bookbag_full') . ')' : ''?></a>
       <a id="viewCart" title="<?=$this->transEsc('View Book Bag')?>" class="viewCart bookbag offscreen" href="<?=$this->url('cart-home')?>"><strong><span id="cartSize"><?=count($cart->getItems())?></span></strong> <?=$this->transEsc('items')?><span id="cartStatus"><?=$cart->isFull() ? $this->transEsc('bookbag_full') : '&nbsp;'?></span></a>
diff --git a/themes/blueprint/templates/layout/layout.phtml b/themes/blueprint/templates/layout/layout.phtml
index f838bcf5b2b..283ac9e3394 100644
--- a/themes/blueprint/templates/layout/layout.phtml
+++ b/themes/blueprint/templates/layout/layout.phtml
@@ -22,7 +22,7 @@
         $this->headScript()->prependScript("path = '" . rtrim($this->url('home'), '/') . "';");
 
         // Deal with cart stuff:
-        $cart = \VuFind\Cart::getInstance();
+        $cart = $this->cart();
         if ($cart->isActive()) {
             $this->headScript()->appendFile("jquery.cookie.js");
             $this->headScript()->appendFile("cart.js");
-- 
GitLab