diff --git a/themes/blueprint/templates/header.phtml b/themes/blueprint/templates/header.phtml index 0447332ec7aea344717b9cfee30ec5fd4d1d31a8..3a734a1dba66f495b62d7c10ad2b00e76c519eae 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') : ' '?></span></a> diff --git a/themes/blueprint/templates/layout/layout.phtml b/themes/blueprint/templates/layout/layout.phtml index f838bcf5b2bfbc2db8edc8ab4b07eed4640eda45..283ac9e339447368df06a2cce296b194b7712787 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");