Update of /cvsroot/openfirst/awards/setup
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25250/awards/setup
Modified Files:
Tag: REL1_1_BRANCH
setup.mysql
Log Message:
All modules install (under MySQL).
Emoticon known to work.
-install.php updated to current method
-problems with auth.php fixed? (Watch auth.php, it's a tricky one)
-ofirst_dbfetch_array() added (Need to port to HEAD)
-var name mismatch fixed in globals.php
-serious updates to logger (no longer tracks total and pagetotal)
-issues with poll removed
Index: setup.mysql
===================================================================
RCS file: /cvsroot/openfirst/awards/setup/Attic/setup.mysql,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -C2 -d -r1.8 -r1.8.2.1
*** setup.mysql 14 Feb 2004 14:35:26 -0000 1.8
--- setup.mysql 28 Aug 2005 03:43:28 -0000 1.8.2.1
***************
*** 1,3 ****
! CREATE TABLE `ofirst_awards` (`ID` int(6) unsigned NOT NULL auto_increment, `AwardName` tinytext, `Description` text,`Event` tinytext, `Date` date default NULL, `Recipient` tinytext, `Image` tinytext, PRIMARY KEY (`ID`)) TYPE=MyISAM;
! ALTER TABLE `ofirst_awards` ADD column Description TEXT;
! INSERT INTO ofirst_config SET modulename='awards',showonmenu='0',active='0',adminnavigation='<a href="$basepath/awards/admin/">Manage Awards</a>',modulenavigation='<a href="$basepath/awards/">View Awards</a>';
--- 1,2 ----
! CREATE TABLE `ofirst_awards` (`ID` int(6) unsigned NOT NULL auto_increment, `AwardName` tinytext, `Description` text,`Event` tinytext, `Date` date default NULL, `Recipient` tinytext, `Image` tinytext, PRIMARY KEY (`ID`));
! REPLACE INTO ofirst_config SET modulename='awards',showonmenu='0',active='0',adminnavigation='<a href="$basepath/awards/admin/">Manage Awards</a>',modulenavigation='<a href="$basepath/awards/">View Awards</a>';
\ No newline at end of file
|