Commit 3d53452d authored by mku's avatar mku

ZP-169 #comment PHP warning in mapiutils #time 15m

git-svn-id: https://z-push.org/svn/z-push/trunk@1444 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent da44e798
...@@ -250,6 +250,10 @@ class MAPIUtils { ...@@ -250,6 +250,10 @@ class MAPIUtils {
ZLog::Write(LOGLEVEL_DEBUG, sprintf("MAPIUtils->readPropStream: property 0x%s not found. It is either empty or not set. It will be ignored.", str_pad(dechex($prop), 8, 0, STR_PAD_LEFT))); ZLog::Write(LOGLEVEL_DEBUG, sprintf("MAPIUtils->readPropStream: property 0x%s not found. It is either empty or not set. It will be ignored.", str_pad(dechex($prop), 8, 0, STR_PAD_LEFT)));
return ""; return "";
} }
elseif ($ret) {
ZLog::Write(LOGLEVEL_ERROR, "MAPIUtils->readPropStream error opening stream: 0X%X", $ret);
return "";
}
$data = ""; $data = "";
$string = ""; $string = "";
while(1) { while(1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment