Update of /cvsroot/phpwebsite-comm/modules/rolodex/boost
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv382/boost
Modified Files:
demographics.php update.php
Log Message:
closing in on 1.0
Index: demographics.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/demographics.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** demographics.php 17 Jun 2008 13:27:27 -0000 1.3
--- demographics.php 6 Jul 2008 13:05:14 -0000 1.4
***************
*** 43,46 ****
--- 43,47 ----
$default[] = 'day_phone';
$default[] = 'day_phone_ext';
+ $default[] = 'evening_phone';
$default[] = 'fax_number';
Index: update.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/update.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** update.php 3 Jul 2008 14:09:59 -0000 1.7
--- update.php 6 Jul 2008 13:05:14 -0000 1.8
***************
*** 111,117 ****
--- 111,130 ----
case version_compare($currentVersion, '1.0.0', '<'):
+ PHPWS_Core::initModClass('demographics', 'Demographics.php');
+ if (PHPWS_Error::logIfError(Demographics::registerDefaultField('evening_phone'))) {
+ $content[] = 'Could not register evening_phone column in demographics table.</pre>';
+ return false;
+ }
$content[] = '<pre>';
$files = array('templates/edit_member.tpl',
+ 'templates/edit_settings.tpl',
+ 'templates/adv_search_form.tpl',
+ 'templates/list_member.tpl',
+ 'templates/view_category.tpl',
+ 'templates/view_feature.tpl',
+ 'templates/view_location.tpl',
+ 'templates/view_member.tpl',
+ 'img/view.gif',
'templates/block.tpl'
);
***************
*** 120,128 ****
$content[] = '1.0.0 changes
----------------
+ Added thumbnail to side-box view
+ Minor fix to prevent titles for features/locations/categories
showing up in various places for members who have none
! + Minor fix in reportring succes after contact form submit
+ Added some tip text to edit member form
</pre>';
--- 133,146 ----
$content[] = '1.0.0 changes
----------------
+ + Registered evening_phone field with demographics module
+ + Split phone privacy settings into home and business
+ Added thumbnail to side-box view
+ Minor fix to prevent titles for features/locations/categories
showing up in various places for members who have none
! + Minor fix in reporting success after contact form submit
+ Added some tip text to edit member form
+ + Further verbage improvements
+ + Added View icon to member viewLink(icon=false)
+ + Added option to have admin notification of all member edits
</pre>';
|