From: Wendall C. <wen...@us...> - 2005-03-04 18:20:21
|
Update of /cvsroot/phpwsbb/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32328/boost Modified Files: install.php update.php Log Message: image dimensions and version bump Index: install.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/install.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** install.php 1 Oct 2004 06:54:12 -0000 1.23 --- install.php 4 Mar 2005 18:19:41 -0000 1.24 *************** *** 49,53 **** /* Create image directory */ ! $phpwsbb_sourcedir = PHPWS_SOURCE_DIR . 'mod/phpwsbb/img/'; $phpwsbb_imagedir = $GLOBALS['core']->home_dir . 'images/phpwsbb/'; if(PHPWS_File::recursiveFileCopy($phpwsbb_sourcedir, $phpwsbb_imagedir)) --- 49,53 ---- /* Create image directory */ ! $phpwsbb_sourcedir = $GLOBALS['core']->source_dir . 'mod/phpwsbb/img/'; $phpwsbb_imagedir = $GLOBALS['core']->home_dir . 'images/phpwsbb/'; if(PHPWS_File::recursiveFileCopy($phpwsbb_sourcedir, $phpwsbb_imagedir)) Index: update.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/update.php,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** update.php 5 Jan 2005 22:02:24 -0000 1.47 --- update.php 4 Mar 2005 18:19:41 -0000 1.48 *************** *** 321,326 **** if(version_compare($currentVersion, '1.0.1') < 0) { $content .= 'Small bug fixes. Language filtering should now work.<br />'; ! $content .= 'You can now uninstall, even though we highly recommend not doing so. ;)'; } ! ?> --- 321,331 ---- if(version_compare($currentVersion, '1.0.1') < 0) { $content .= 'Small bug fixes. Language filtering should now work.<br />'; ! $content .= 'You can now uninstall, even though we highly recommend not doing so. ;)<br />'; ! } ! if(version_compare($currentVersion, '1.0.2') < 0) { ! $content .= 'No longer allow forking on threads with a single post.<br />'; ! $content .= 'Added "Back to the forum" link after posting.<br />'; ! $content .= 'Added height and width attributes to all images.<br />'; } ! ?> \ No newline at end of file |