Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

331
 
333
 
333
 
recently_visited.php
_> 99   Released under the GNU General Public License
  1010 */
  1111 
<> 12 -  class osC_Content_recently_visited extends osC_Boxes {
   12+  class osC_Content_recently_visited extends osC_Modules {
1313     var $_title = 'Recently Visited',
  1414         $_code = 'recently_visited',
  1515         $_author_name = 'osCommerce',
<> 16 -        $_author_www = 'http://www.oscommerce.com';
   16+        $_author_www = 'http://www.oscommerce.com',
   17+        $_group = 'content';
1718 
  1819 /* Class constructor */
  1920 
     
 !
3334       $Qinstall->bindValue(':code', $this->_code);
  3435       $Qinstall->bindValue(':author_name', $this->_author_name);
  3536       $Qinstall->bindValue(':author_www', $this->_author_www);
<> 36 -      $Qinstall->bindValue(':modules_group', 'content');
   37+      $Qinstall->bindValue(':modules_group', $this->_group);
<_ 3738       $Qinstall->execute();
  3839     }
  3940   }