Commit Graph

37618 Commits

Author SHA1 Message Date
Dmitry Stogov
69ff1d0e4d Return HTTP 403 in case of "access denied". 2007-03-09 16:50:17 +00:00
50489f7682 ChangeLog update 2007-03-09 01:31:03 +00:00
Rasmus Lerdorf
bdd22775fe MFB Off by ! in file:/// control char check 2007-03-09 01:22:47 +00:00
Stanislav Malyshev
031991d7a7 MFB: fix crash/leak in bug #38710 2007-03-08 22:57:02 +00:00
Stanislav Malyshev
d3b90533fc MFB: fix crash on $x['x']['y'] += 1, patch by Brian Shire 2007-03-08 21:06:54 +00:00
Stanislav Malyshev
6bfcb2bdbd MFB test 2007-03-08 21:05:17 +00:00
Nuno Lopes
78f33b160a MFB: fix thread unsafety in the gif reader code (merge from libgd cvs) 2007-03-08 20:26:48 +00:00
Marcus Boerger
80c2f1f92c - Improved version of ternary shortcut 2007-03-08 17:30:28 +00:00
2e0903fe19 ChangeLog update 2007-03-08 01:31:10 +00:00
Antony Dovgal
ebb2fc5b1b fix #40752 (parse_ini_file() segfaults when a scalar setting is redeclared as an array) 2007-03-08 00:43:06 +00:00
Zoe Slattery
16507b73cd New test case for array_slice 2007-03-07 13:22:26 +00:00
Antony Dovgal
94723e9457 fix #40727 (segfault in PDO when failed to bind parameters) 2007-03-07 09:02:18 +00:00
0c96c5035a ChangeLog update 2007-03-07 01:31:05 +00:00
Derick Rethans
d184a4f9c3 - MF52: Updated timezone database to version 2007.3. 2007-03-06 21:29:33 +00:00
Antony Dovgal
a298ef786a comment out unused function
need to figure out why and what for it has been added in the first place..
2007-03-06 21:07:52 +00:00
Antony Dovgal
def247344d declare zend_mm_random() only when needed 2007-03-06 20:58:40 +00:00
Antony Dovgal
702c31844b fix tests 2007-03-06 20:53:11 +00:00
Antony Dovgal
d5a9eab2e7 fix tests 2007-03-06 20:45:15 +00:00
Antony Dovgal
05dd85e7c9 be consistent with non-unicode implementation 2007-03-06 20:35:49 +00:00
Sara Golemon
98e832d29e Fix handling over overridden file:// wrapper 2007-03-06 20:04:05 +00:00
Antony Dovgal
fdae6875ea fix segfault in import_request_variables() and its test
I'm not completely sure it's correct to import numeric vars like _POST["1"] etc.
2007-03-06 19:59:13 +00:00
Uwe Schindler
4f370ac55f Update function names for PHP6 to php6* 2007-03-06 19:47:12 +00:00
Antony Dovgal
733b197105 initialize variable 2007-03-06 19:45:02 +00:00
Antony Dovgal
37797ff7bf fix tests 2007-03-06 19:25:46 +00:00
Uwe Schindler
7d9bf1d1cc remove (large) static buffers for header names and request uri 2007-03-06 18:15:04 +00:00
Uwe Schindler
ff979699c9 use slprintf instead of snprintf and remove 0termination things (because slprintf is always available now) 2007-03-06 16:19:36 +00:00
Antony Dovgal
b43a614ba0 fix AC_TRY_COMPILE usage 2007-03-06 10:13:37 +00:00
209220345d ChangeLog update 2007-03-06 01:31:05 +00:00
Marcus Boerger
d826cadb63 - Add missing return value check 2007-03-06 01:21:36 +00:00
Marcus Boerger
269baad27d - Revert back to sprintf (we could define snprintf for windows but we don't) 2007-03-06 00:55:46 +00:00
Uwe Schindler
f8b7d0e046 snprintf patch 2007-03-05 16:28:39 +00:00
andy wharmby
3bd2a64165 Remove bug entry for 35872 as now in 5.2 2007-03-05 15:53:09 +00:00
Michael Wallner
d431a16629 - fix ws as requested by derick 2007-03-05 14:10:05 +00:00
Michael Wallner
75383d4658 - fix bug #40691: add comparison object handler 2007-03-05 14:05:31 +00:00
andy wharmby
db571b7356 Fixed bug #35872 (Prevent object store references during RSHUTDOWN) 2007-03-05 12:56:26 +00:00
3012291178 ChangeLog update 2007-03-05 01:31:05 +00:00
Marcus Boerger
b24f840411 - Implement '?:'
[DOC] "expr1 ?: expr1" is a shortcut for: "expr1 ? expr1 : expr2" as
      exists in gcc and discussed some time back. Note that this is not
      an implementation ifsetor($var, default). While ifsetor would not
      generate any message for non existing variables or array indices
      the ternary shortcut does. Also the ternary shortcut does a boolean
      evaluation rather then checking for isset(). That way ther ternary
      shortcut can work on any expression while ifsetor can only work on
      variables. Also to be silent one has do do: "@$expr1 ?: $expr2".
2007-03-04 16:25:57 +00:00
Marcus Boerger
213172a41b - Missed one is-dot check 2007-03-04 12:13:20 +00:00
Marcus Boerger
0646ecdcc8 - Match docu with implementation
- RecursiveFilterIterator::accept() needs to be abstract
2007-03-04 12:06:55 +00:00
Marcus Boerger
afe24c2722 - Simplify 2007-03-04 12:02:16 +00:00
2659e8b96b ChangeLog update 2007-03-04 01:31:04 +00:00
Marcus Boerger
eefa6754e8 - And finally use prefix style names for consistency sake 2007-03-04 00:42:30 +00:00
Edin Kadribasic
2bdf721f63 MFB: Check that manifest file exists before trying to embed it 2007-03-04 00:41:36 +00:00
Marcus Boerger
9ee90718e9 - Reverting glob on child logic makes globbing work better with the example
code
2007-03-04 00:36:08 +00:00
Marcus Boerger
b30dbb98fc - Fix a minor issue with glob support - forgot to set length of string
- Add ability to not use glob on subdirs
2007-03-04 00:23:07 +00:00
Marcus Boerger
bf8ea04c13 - Missed to add [ to meta char check 2007-03-03 23:56:43 +00:00
Marcus Boerger
b0a595d2d7 - Glob might require us to refetch the path for every entry 2007-03-03 23:41:43 +00:00
Marcus Boerger
c7faeb736a - Allow to retrieve flags with php_glob_stream_get_count()
- Detect meta chars in pathand switch to append mode so that path can
  actually changes for each entry
2007-03-03 23:41:10 +00:00
Marcus Boerger
af7829f2dc - Add DirectoryIterator::count() 2007-03-03 23:07:33 +00:00
Marcus Boerger
ce1d14eae8 - Allow to get number of entries of a glob stream 2007-03-03 23:04:57 +00:00