+ Added discrete users online in footer (from Wish List Forum)
$ /admin/db/users_db.inc
/sql/alter2.2.sql
+ /sql/en_US-new.sql
+ /sql/en_US-demo.sql
/themes/aqua/renderer.php
/themes/cool/renderer.php
/themes/default/renderer.php
### Data of table `0_tag_associations` ###
+
+DROP TABLE IF EXISTS `0_usersonline`;
+
+CREATE TABLE `0_useronline` (
+ `timestamp` int(15) NOT NULL default '0',
+ `ip` varchar(40) NOT NULL default '',
+ `file` varchar(100) NOT NULL default '',
+ PRIMARY KEY (`timestamp`),
+ KEY `ip` (`ip`),
+ KEY `file` (`file`)
+) TYPE=MyISAM;
+
### Data of table `0_tag_associations` ###
+
+DROP TABLE IF EXISTS `0_usersonline`;
+
+CREATE TABLE `0_useronline` (
+ `timestamp` int(15) NOT NULL default '0',
+ `ip` varchar(40) NOT NULL default '',
+ `file` varchar(100) NOT NULL default '',
+ PRIMARY KEY (`timestamp`),
+ KEY `ip` (`ip`),
+ KEY `file` (`file`)
+) TYPE=MyISAM;
+