Ticket #784 (closed Bug: fixed)
Uninitialized $php_errormsg
| Reported by: | Anonymous | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | FCKeditor 2.5 Beta |
| Component: | General | Version: | |
| Keywords: | SF | Cc: |
Description
Here's a list of uninitialized variables as reported by Eclipse:
editor/filemanager/browser/default/connectors/php/io.php, line 76: $php_errormsg The variable may indeed not be initialized, namely if there is no error in the preceding umask and mkdir calls. However, in that case, it's entirely possible that track_errors was set and an old error message is lingering. Correction: Insert $php_errormsg = '' ; immediately before ini_set( 'track_errors', '1' ) ;
Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1577414&group_id=75348&atid=543653
Change History
Note: See
TracTickets for help on using
tickets.