Modified multiple template files to fix validation errors.
Removed outdated template files for header/footer.tpl.
Updated links and search forms to point to the correct href/action.
Added themes/extensions templates.
Fixed application values in main navigation so when app=null it wouldn't persist and instead be set to firefox by default.
*.sql
Added v2.sql and updated amo.sql to contain the correct database structure.
Note: v2.sql is for the v1->v2 migration when the public v2 is released.
search.php
Fixed selected values for application, and cleaned up code.
session.class.php, includes.php
No longer need session.class.php, it is replaced by auth.class.php.
git-svn-id: svn://10.0.0.236/trunk@188031 18797224-902f-48f8-a5cc-f745e15eee43
18 lines
486 B
SQL
18 lines
486 B
SQL
-- SQL specific to v2 needed for migration of v1 production database
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `session_data`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `session_data`;
|
|
CREATE TABLE `session_data` (
|
|
`sess_id` varchar(255) NOT NULL default '',
|
|
`sess_user_id` int(11) NOT NULL default '0',
|
|
`sess_expires` int(11) unsigned NOT NULL default '0',
|
|
`sess_data` text,
|
|
PRIMARY KEY (`sess_id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
|
|