|
From: Verdon V. <ve...@us...> - 2008-11-24 04:12:13
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/boost In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32073/boost Modified Files: update.php Log Message: fix captch Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/update.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** update.php 22 Nov 2008 21:01:00 -0000 1.18 --- update.php 24 Nov 2008 04:11:56 -0000 1.19 *************** *** 196,202 **** $content[] = '<pre>'; ! $file = PHPWS_SOURCE_DIR . 'mod/rolodex/inc/init.php'; ! if (is_file($file)) { ! if (!@unlink($file)) { $content[] = 'FAILED TO DELETE mod/rolodex/inc/init.php YOU MUST REMOVE THIS FILE YOURSELF --- 196,202 ---- $content[] = '<pre>'; ! $initfile = PHPWS_SOURCE_DIR . 'mod/rolodex/inc/init.php'; ! if (is_file($initfile)) { ! if (!@unlink($initfile)) { $content[] = 'FAILED TO DELETE mod/rolodex/inc/init.php YOU MUST REMOVE THIS FILE YOURSELF *************** *** 209,212 **** --- 209,216 ---- } + $files = array('templates/message_member.tpl' + ); + rolodexUpdateFiles($files, $content); + $content[] = '1.3.0 changes ---------------- *************** *** 215,218 **** --- 219,223 ---- + Begin rewriting to php5 standards + Moved readme content to docs/readme + + Updated CAPTCHA support </pre>'; |