summaryrefslogtreecommitdiff
path: root/includes/file.inc
Commit message (Collapse)AuthorAge
* - Patch #40631 by Chris Johnson: is_array() slower than isset() or empty().Dries Buytaert2005-12-14
|
* - Patch #40855 by Ber: fixed typo in watchdog message.Dries Buytaert2005-12-12
|
* - Fixed bug with checking for .txt files.Dries Buytaert2005-11-30
|
* - More fixesDries Buytaert2005-11-30
|
* - Removed valid_input_check().Dries Buytaert2005-11-30
|
* - Various fixes. Updated CHANGELOG.txtDries Buytaert2005-11-29
|
* - Patch #26249 by Morbus: improved handling of temporary files/directory.Dries Buytaert2005-11-12
| | | | | | | | If your module uses variable_get('file_directory_temp', ...) or variable_get('file_directory_path', ...) please update it to use the new API. A list of affected modules is available at http://drupal.org/node/26249#comment-54194.
* - Patch #10658 by Morbus: create new folders with the right permissions.Dries Buytaert2005-11-04
|
* - Patch #26249 by crunchywelch, Junyor: use upload_tmp_dir as default ↵Dries Buytaert2005-11-01
| | | | temporary directory. Fixed file problems on Windows NT systems.
* - Patch #21924 by walkah: made enclosures use absolute URLs to work around ↵Dries Buytaert2005-09-13
| | | | broken RSS parsers.
* - Bug #30390: fixed parse error. Alternative fix.Dries Buytaert2005-09-06
|
* - Patch #29385 by chx: no ?> add end of files.Dries Buytaert2005-08-25
|
* - Patch #28482 by Uwe: add CVS $Id$ tags to all source files in Drupal core. ↵Dries Buytaert2005-08-11
| | | | | | This allows admins to know exactly which version of which files they use. In addition I want to use CVS $Id$ tags in my upcoming security.module to check for possible vulnerabilities. That's not possible if some files simply don't have $Id$s. Note: I also (mostly) unified the tags to use the "// ID" form instead of "/* ID */", but that's more of a cosmetic issue. I'm not sure whether *.txt files and the stuff in themes/ need tags(?).
* - Patch by Drumm: one more attempt at fixing file_create_path().Dries Buytaert2005-05-18
|
* - Patch #23028 by chx: fixed file_check_location() problems.Dries Buytaert2005-05-17
|
* - Patch by James/Gerhard: made file_create_path() more robust.Dries Buytaert2005-05-14
|
* - Patch #22118 by Robin Monks: made file_transfer() more robust.Dries Buytaert2005-05-06
|
* - Patch #15595 by Stefan and Djun: improved status messages.Dries Buytaert2005-05-05
| | | | | TODO: we should write down a couple guidelines for these document them in the PHPDoc code of drupal_set_message()! .
* - Patch #19739 by Uwe: corrected many typo's in the documentation and code ↵Dries Buytaert2005-03-31
| | | | comments
* - #18817: Clean up plain-text checking (see drupal-devel!)Steven Wittens2005-03-31
|
* - Removed . We'll reintroduce it when really necessary.Dries Buytaert2005-03-08
|
* - Patch #16914 by chx: avoid that putting a .theme file directly in './themes'Dries Buytaert2005-03-08
| | | | breaks your Drupal. Only themes in './themes/subdir' are picked up now.
* - Modified patch #14170 by Neil: improved default workflow (default node ↵Dries Buytaert2005-01-24
| | | | | | type) configuration page. Modified the patch to remove some redundant code, to translate strings, and to better use the menu system.
* - Patch #13260 by UnConeD: watchdog module improvements.Dries Buytaert2005-01-09
| | | | | | | | | | We added a 'severity' column to watchdog(): watchdog($type, $message, $link) --> watchdog($type, $message, $severity, $link); * Specify a severity in case you are reporting a warning or error. * The $link-parameter is now the fourth parameter instead of the third. TODO: document this in the upgrade guide.
* - Patch #5942 by jhriggs and Adrian:Dries Buytaert2004-11-24
| | | | | + added support for multi-site configurations. + tidied up some old cruft and added code comments.
* - Modified patch #7235: do a better job checking the OS and acting upon it.Dries Buytaert2004-11-15
|
* - Patch #9292 by killes from Carl: fixed a PHP5 compatibility problem with ↵Dries Buytaert2004-11-08
| | | | file handling.
* Rest of #12167 (respect input check bypass permission)Steven Wittens2004-11-03
|
* #12167: Respect 'bypass input data check' permission in file.inc.Steven Wittens2004-11-02
|
* #12183: surpress php error on copy()Steven Wittens2004-10-28
|
* #12155 : use defined constant rather than integer in file.inc.Steven Wittens2004-10-26
|
* - Patch #11728 by Uwe Hermann: fixed some typos in the code comments, ↵Dries Buytaert2004-10-19
| | | | | | Doxygen documentation and screen output. Uwe: I dropped the 'iff' chunks as 'iff' stands for 'if and only if'.
* - Patch #10419 by ccourtne: documentation improvements and rename prevention ↵Dries Buytaert2004-09-17
| | | | option.
* #10803: file_save_data() does not pass $replace along.Steven Wittens2004-09-13
|
* - Patch #10663 by JonBob: documentation improvements: fixed some typos and ↵Dries Buytaert2004-09-09
| | | | improved consistency to the use of Doxygen/api.module commands in the comments.
* Patch by me and Kjartan.Steven Wittens2004-08-24
| | | | | | | | | | | | Upload.module - Fixing a bug caused by the PHP5 patches. Beware: PHP4's array_merge() will silently accept objects and convert them to arrays. We should not depend on this behaviour in the future. File.inc / file-using modules: - Removing the constant FILE_SEPARATOR: forward slashes work fine on Windows, and it was being used incorrectly as an URL separator sometimes. - Adding @ to mkdir and chmod to supress ugly PHP errors. They are already reported with drupal_set_message(). - Fixing default for variable 'file_directory_temp'. - Clarifying the help tip for 'file_directory_temp' in admin > settings.
* - #9292: Make Drupal (somewhat) PHP5 compatible. xtemplate is still horribly ↵Steven Wittens2004-08-22
| | | | broken.
* - Patch by JonBob: for consistency and readability, add brief descriptions ↵Dries Buytaert2004-08-21
| | | | of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
* - Theme system changes. Please consult http://drupal.org/node/view/9576 for ↵Dries Buytaert2004-08-20
| | | | details.
* - Code improvements by Stefan: made all status messages consistent (and ↵Dries Buytaert2004-08-18
| | | | easier to translate).
* - The upload (filehandler) module has landed!Dries Buytaert2004-08-17
|
* - Patch #9983 by Stefan: usability improvement: made sure all status ↵Dries Buytaert2004-08-16
| | | | messages start with a capital letter.
* - Patch #8670 by asimmonds: more spelling fixes.Dries Buytaert2004-06-21
|
* - Commited patch #4878: Support file uploads via blogapi.Kjartan Mannes2004-06-04
|
* - Removing early experimental tab code that slipped in.Kjartan Mannes2004-06-02
| | | | | - Fixing a copy paste error in file.inc. - Some double => single quote changes.
* - Added support for 403 handling. Patch by JonBob. As a side benefit,Dries Buytaert2004-04-21
| | | | | | | | administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages.
* - Patch #6517 by kika: drupal_http_request() fails to open feed because on ↵Dries Buytaert2004-03-24
| | | | PHP 4.1.2. Also updated file.inc.
* - Fixed constants problem.Kjartan Mannes2004-02-27
| | | | - Made filename modification more logical when there was no extension.
* - Patch #5874 by Bart: made file uploads work with PHP 4.2.Dries Buytaert2004-02-15
|
* - Fixing extension splitting (was using the first dot instead of the last one).Kjartan Mannes2004-01-29
|