  |
9 | 9 | | Released under the GNU General Public License |
| |
10 | 10 | | */ |
| |
11 | 11 | | |
  |
12 | | - | class osC_Content_recently_visited extends osC_Boxes { |
| |
| 12 | + | class osC_Content_recently_visited extends osC_Modules { |
|
13 | 13 | | var $_title = 'Recently Visited', |
| |
14 | 14 | | $_code = 'recently_visited', |
| |
15 | 15 | | $_author_name = 'osCommerce', |
  |
16 | | - | $_author_www = 'http://www.oscommerce.com'; |
| |
| 16 | + | $_author_www = 'http://www.oscommerce.com', |
| |
| 17 | + | $_group = 'content'; |
|
17 | 18 | | |
| |
18 | 19 | | /* Class constructor */ |
| |
19 | 20 | | |
| |
|
|
 |
… |
|
33 | 34 | | $Qinstall->bindValue(':code', $this->_code); |
| |
34 | 35 | | $Qinstall->bindValue(':author_name', $this->_author_name); |
| |
35 | 36 | | $Qinstall->bindValue(':author_www', $this->_author_www); |
  |
36 | | - | $Qinstall->bindValue(':modules_group', 'content'); |
| |
| 37 | + | $Qinstall->bindValue(':modules_group', $this->_group); |
  |
37 | 38 | | $Qinstall->execute(); |
| |
38 | 39 | | } |
| |
39 | 40 | | } |