projects
/
mailer.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Debug line added if is not an array
[mailer.git]
/
inc
/
functions.php
diff --git
a/inc/functions.php
b/inc/functions.php
index
bf8b9b9
..
cfbd665
100644
(file)
--- a/
inc/functions.php
+++ b/
inc/functions.php
@@
-1755,6
+1755,7
@@
function POST_URL ($script, $postData) {
// Is postData an array?
if (!is_array($postData)) {
// Abort here
+ DEBUG_LOG(__FILE__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
return array("", "", "");
} // END - if