|
From: Verdon V. <ve...@us...> - 2008-10-09 19:40:59
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/boost In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27908/boost Modified Files: boost.php update.php Log Message: 1.2.0 updates Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/boost.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** boost.php 24 Jul 2008 12:40:13 -0000 1.7 --- boost.php 9 Oct 2008 19:40:47 -0000 1.8 *************** *** 24,28 **** $proper_name = 'Rolodex'; ! $version = '1.1.0'; $image_dir = true; $import_sql = true; --- 24,28 ---- $proper_name = 'Rolodex'; ! $version = '1.2.0'; $image_dir = true; $import_sql = true; Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/update.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** update.php 26 Jul 2008 20:57:14 -0000 1.14 --- update.php 9 Oct 2008 19:40:47 -0000 1.15 *************** *** 179,182 **** --- 179,205 ---- + case version_compare($currentVersion, '1.2.0', '<'): + $content[] = '<pre>'; + + /* + $files = array('templates/edit_member.tpl', + 'templates/edit_settings.tpl', + 'templates/adv_search_form.tpl', + 'templates/view_member.tpl', + 'templates/list_member.tpl' + ); + rolodexUpdateFiles($files, $content); + */ + $content[] = '1.2.0 changes + ---------------- + + Fixed bug where some list parameters were being cleared when + a search was not being done, when paging a list of users + + Fixed a session bug in RDX_Runtime + + Fixed a few php notices + + Made Read Me tab restricted to deity users + + </pre>'; + + |