Fri 23 Apr 2004 04:51:55 PM UTC, comment #1:
This has been corrected in CVS.
To grab a complete update of all fixes:
1) Check to see if you have cvs installed: 'cvs --help'.
1a) If not, install a copy of cvs-cli from your favorite
distro.
2) Then just type:
'cd <your phpgroupware dir>; cvs update -dP'.
You can do step 2 as many times in a day as you wish, and
will always get the most current bug fixes.
Thanks,
|
Thu 15 Apr 2004 05:09:58 PM UTC, original submission:
The export() function in class.uiXport.inc.php which handles the Export in the Addressbook, will not work if register_globals = OFF. The function depends on using $GLOBALS to get the form vars upon submittion, and those vars will be blank and therefore it thinks you are just entering the page for the first time, essentially doing a refresh upon submittion.
If you comment out the $GLOBALS line, and paste the following code underneath it, it will always get the form vars wether or not register_globals = ON|OFF.
$convert = get_var('convert', array('GET','POST'));
$tsvfilename = get_var('tsvfilename', array('GET','POST'));
$fcat_id = get_var('fcat_id', array('GET','POST'));
$download = get_var('download', array('GET','POST'));
$conv_type = get_var('conv_type', array('GET','POST'));
$both_types = get_var('both_types', array('GET','POST'));
$sub_cats = get_var('sub_cats', array('GET','POST'));
If someone could make a .diff, that would be helpfull to those who don't code.
- scibe
|