[ postfixadmin-Bugs-1927707 ] tFmail error on line 35 in fetchmail.php
Brought to you by:
christian_boltz,
gingerdog
From: SourceForge.net <no...@so...> - 2008-03-28 03:50:30
|
Bugs item #1927707, was opened at 2008-03-27 20:50 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1927707&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Master Merlin Kull Kirkpatrick (thefathermind) Assigned to: Nobody/Anonymous (nobody) Summary: tFmail error on line 35 in fetchmail.php Initial Comment: I was getting an error of this nature. I am using a slightly older version of PHP and I suppose in newer versions it does not complain about variables that have not been defined yet. So I simply put an @ sign in front of the variable and this resolves the problem totally. Perhaps that should be implimented into the original source. Old Line... if (sizeof ($tFmail) > 0){ new Line... if (sizeof (@$tFmail) > 0){ ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=1927707&group_id=191583 |