From: Eloi G. <ada...@us...> - 2009-01-21 16:27:28
|
Update of /cvsroot/phpwebsite-comm/modules/article/boost In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2933/boost Modified Files: update.php Log Message: `Also on this Site` and `Popular Articles` templates now use their own box definitions, not the standard layout one. Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/boost/update.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** update.php 22 Nov 2008 00:43:59 -0000 1.27 --- update.php 21 Jan 2009 16:27:19 -0000 1.28 *************** *** 254,258 **** --- 254,284 ---- + Made bulk operation selection text more understandable. </pre>'; + + case version_compare($currentVersion, '4.2.1', '<'): + $files = array('templates/popular_links.tpl', 'templates/runtime_categorized.tpl', 'templates/runtime_chronological.tpl'); + if (PHPWS_Boost::updateFiles($files, 'article')) { + $content[] = '+ Updated the following files: ' . implode("\n ", $files); + } + else { + $content[] = '+ Unable to update the following files: ' . implode("\n ", $files); + return false; + } + + $content[] = '<pre> + ======================== + Changes in version 4.2.1 + ======================== + + Fixed a minor categorized summary display bug + + Article title links now show the summary in the tooltip + + Customized category display added + + Deleted reference to obsolete file (AM_Modsettings.php) + + If the specified XML file isn`t found in the branch directory, XML_import will look in the hub directory as well. + + Search now indexes all words, not just the uncommon ones. + + The conversion script now uses PHPWS_Text::breaker to convert newlines to br tags + + A `post-upgrade conversion` script is included to convert newlines to br tags in an existing AM installation + + `Also on this Site` and `Popular Articles` templates now use their own box definitions, not the standard layout one. + </pre>'; + } // end of switch |