Changeset 308 in subversion
- Timestamp:
- Aug 11, 2006 5:48:44 AM (7 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
SQL/mysql.update.sql (modified) (1 diff)
-
program/steps/addressbook/show.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/SQL/mysql.update.sql
r306 r308 2 2 -- Updates from version 0.1-20051007 3 3 4 ALTER TABLE `contacts` ADD `name` varchar(128) NOT NULL default ''; 5 ALTER TABLE `contacts` ADD `email` varchar(128) NOT NULL default ''; 6 ALTER TABLE `contacts` ADD `first_name` varchar(128) NOT NULL default ''; 4 ALTER TABLE `contacts` CHANGE `firstname` `first_name` VARCHAR( 128 ) NOT NULL; ALTER TABLE `contacts` CHANGE `surname` `last_name` VARCHAR( 128 ) NOT NULL; 5 7 6 ALTER TABLE `contacts` ADD `middle_name` varchar(128) NOT NULL default ''; 8 ALTER TABLE `contacts` ADD `last_name` varchar(128) NOT NULL default '';9 7 ALTER TABLE `contacts` ADD `edu_title` varchar(128) NOT NULL default ''; 10 8 ALTER TABLE `contacts` ADD `addon` varchar(128) NOT NULL default ''; -
trunk/roundcubemail/program/steps/addressbook/show.inc
r88 r308 14 14 +-----------------------------------------------------------------------+ 15 15 | Author: Thomas Bruederli <roundcube@gmail.com> | 16 | Author: Tobias 'tri' Richter <tobias@datenwerkstatt-richter.de | 16 17 +-----------------------------------------------------------------------+ 17 18 … … 54 55 $out = "<table>\n\n"; 55 56 56 $a_show_cols = array('name', ' firstname', 'surname', 'email');57 $a_show_cols = array('name', 'email', 'first_name', 'middle_name', 'last_name', 'edu_title', 'addon', 'nickname', 'company', 'organisation', 'department', 'job_title', 'note', 'tel_work1_voice', 'tel_work2_voice', 'tel_home1_voice', 'tel_home2_voice', 'tel_cell_voice', 'tel_car_voice', 'tel_pager_voice', 'tel_additional', 'tel_work_fax', 'tel_home_fax', 'tel_isdn', 'tel_preferred', 'tel_telex', 'work_street', 'work_zip', 'work_city', 'work_region', 'work_country', 'home_street', 'home_zip', 'home_city', 'home_region', 'home_country', 'postal_street', 'postal_zip', 'postal_city', 'postal_region', 'postal_country', 'url_work', 'role', 'birthday', 'rev', 'lang'); 57 58 foreach ($a_show_cols as $col) 58 59 {
Note: See TracChangeset
for help on using the changeset viewer.
