phpcoder-cvs Mailing List for phpcoder
Brought to you by:
garyjharris,
quickfoot
You can subscribe to this list here.
2004 |
Jan
(3) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1
|
2
|
3
|
4
|
5
|
6
(1) |
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
|
|
|
|
|
|
From: <gh...@us...> - 2004-02-06 16:09:05
|
Update of /cvsroot/phpcoder/phpcoder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6575 Modified Files: coder-class.php Log Message: Initialize some more variables to avoid the notices when using E_ALL. Index: coder-class.php =================================================================== RCS file: /cvsroot/phpcoder/phpcoder/coder-class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- coder-class.php 27 Jan 2004 13:34:12 -0000 1.2 +++ coder-class.php 6 Feb 2004 16:06:16 -0000 1.3 @@ -511,6 +511,7 @@ } // build script expiration timestamp + $expire_stamp = 0; if (!empty($rest['expire_value']) && is_numeric($rest['expire_value']) && !empty($rest['expire_unit'])) { $expire_stamp = strtotime('+' . $rest['expire_value'] . ' ' . $rest['expire_unit']); } elseif (!empty($rest['expire_english'])) { @@ -634,6 +635,8 @@ function _ListValidFiles($file_dir) { + $return = array(); + if (!is_dir($file_dir)) { die($file_dir . ' is not a directory'); } |