Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

685
 
686
 
686
 
recently_visited.php
_> 4040             $this->_content .= '<li style="padding-bottom: 15px;">';
  4141 
  4242             if (SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_IMAGES == '1') {
<> 43 -              $this->_content .= '<span style="float: left; width: ' . ($osC_Image->getWidth('mini') + 10) . 'px; text-align: center;">' . osc_link_object(tep_href_link(FILENAME_PRODUCTS, $product['keyword']), $osC_Image->show($product['image'], $product['name'], null, 'mini')) . '</span>';
   43+              $this->_content .= '<span style="float: left; width: ' . ($osC_Image->getWidth('mini') + 10) . 'px; text-align: center;">' . osc_link_object(osc_href_link(FILENAME_PRODUCTS, $product['keyword']), $osC_Image->show($product['image'], $product['name'], null, 'mini')) . '</span>';
4444             }
  4545 
<> 46 -            $this->_content .= '<div style="padding-left: ' . ($osC_Image->getWidth('mini') + 10) . 'px;">' . osc_link_object(tep_href_link(FILENAME_PRODUCTS, $product['keyword']), $product['name']) . '<br />';
   46+            $this->_content .= '<div style="padding-left: ' . ($osC_Image->getWidth('mini') + 10) . 'px;">' . osc_link_object(osc_href_link(FILENAME_PRODUCTS, $product['keyword']), $product['name']) . '<br />';
4747 
  4848             if (SERVICE_RECENTLY_VISITED_SHOW_PRODUCT_PRICES == '1') {
  4949               $this->_content .= $product['price'] . '&nbsp;';
  5050             }
  5151 
<> 52 -            $this->_content .= '<i>(' . sprintf($osC_Language->get('recently_visited_item_in_category'), osc_link_object(tep_href_link(FILENAME_DEFAULT, 'cPath=' . $product['category_path']), $product['category_name'])) . ')</i></div></li>';
   52+            $this->_content .= '<i>(' . sprintf($osC_Language->get('recently_visited_item_in_category'), osc_link_object(osc_href_link(FILENAME_DEFAULT, 'cPath=' . $product['category_path']), $product['category_name'])) . ')</i></div></li>';
5353           }
  5454 
  5555           $this->_content .= '      </ol>' .
     
 !
6262                              '        <ol style="list-style: none; margin: 0; padding: 0;">';
  6363 
  6464           foreach ($osC_RecentlyVisited->getCategories() as $category) {
<> 65 -            $this->_content .= '<li>' . osc_link_object(tep_href_link(FILENAME_DEFAULT, 'cPath=' . $category['path']), $category['name']);
   65+            $this->_content .= '<li>' . osc_link_object(osc_href_link(FILENAME_DEFAULT, 'cPath=' . $category['path']), $category['name']);
6666 
  6767             if (!empty($category['parent_id'])) {
<> 68 -              $this->_content .= '&nbsp;<i>(' . sprintf($osC_Language->get('recently_visited_item_in_category'), osc_link_object(tep_href_link(FILENAME_DEFAULT, 'cPath=' . $category['parent_id']), $category['parent_name'])) . ')</i>';
   68+              $this->_content .= '&nbsp;<i>(' . sprintf($osC_Language->get('recently_visited_item_in_category'), osc_link_object(osc_href_link(FILENAME_DEFAULT, 'cPath=' . $category['parent_id']), $category['parent_name'])) . ')</i>';
6969             }
  7070 
  7171             $this->_content .= '</li>';
     
 !
8181                              '        <ol style="list-style: none; margin: 0; padding: 0;">';
  8282 
  8383           foreach ($osC_RecentlyVisited->getSearches() as $searchphrase) {
<> 84 -            $this->_content .= '<li>' . osc_link_object(tep_href_link(FILENAME_SEARCH, 'keywords=' . $searchphrase['keywords']), tep_output_string_protected($searchphrase['keywords'])) . ' <i>(' . number_format($searchphrase['results']) . ' results)</i></li>';
   84+            $this->_content .= '<li>' . osc_link_object(osc_href_link(FILENAME_SEARCH, 'keywords=' . $searchphrase['keywords']), tep_output_string_protected($searchphrase['keywords'])) . ' <i>(' . number_format($searchphrase['results']) . ' results)</i></li>';
<_ 8585           }
  8686 
  8787           $this->_content .= '      </ol>' .