You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
(9) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(2) |
Nov
(3) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2003 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
(2) |
29
(1) |
30
|
|
From: Christian S. <chr...@us...> - 2001-11-29 09:17:24
|
CVSROOT: /cvsroot/phpautodoc Module name: phpautodoc Repository: ./ Changes by: chris_schneider@usw-pr-cvs1. 01/11/29 01:17:22 Log message: Work-around for function foo(){ vs. function foo() { problem (bug #486429) Modified files: ./: phpdoc.php Revision Changes Path 1.20 +2 -1 phpautodoc/phpdoc.php |
From: <no...@so...> - 2001-11-28 11:22:23
|
Bugs item #486429, was opened at 2001-11-28 03:22 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=107183&aid=486429&group_id=7183 Category: Code Group: None Status: Open Resolution: None Priority: 5 Submitted By: Josjojo (josjojo) Assigned to: Nobody/Anonymous (nobody) Summary: 'function f($g){' not processed correct Initial Comment: When there is a '{' directly after the ')' the function will not be processed correctly. Look at this example: function f($g){ //Do something } This function will not be processed correctly. To let phpdoc.php let it process correctly the function has to have a space between ')' and '{'. The corrected function (function from above): function f($g) { //Do something } Please correct this. Thanks. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=107183&aid=486429&group_id=7183 |
From: <no...@so...> - 2001-11-28 11:15:10
|
Bugs item #486428, was opened at 2001-11-28 03:15 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=107183&aid=486428&group_id=7183 Category: Code Group: None Status: Open Resolution: None Priority: 5 Submitted By: Josjojo (josjojo) Assigned to: Nobody/Anonymous (nobody) Summary: function f($g){' Initial Comment: PHP Sourcecode (witch is processed): ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=107183&aid=486428&group_id=7183 |