diff options
-rw-r--r-- | ext/icap/php3_icap.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/icap/php3_icap.c b/ext/icap/php3_icap.c index 8591e7f4af..6f7f5bdd5c 100644 --- a/ext/icap/php3_icap.c +++ b/ext/icap/php3_icap.c @@ -306,8 +306,8 @@ void php3_icap_expunge(INTERNAL_FUNCTION_PARAMETERS) RETURN_FALSE; } - cal_expunge (icap_le_struct->icap_stream); - +/* cal_expunge (icap_le_struct->icap_stream); +*/ RETURN_TRUE; } /* }}} */ @@ -465,6 +465,7 @@ void php3_icap_create_calendar(INTERNAL_FUNCTION_PARAMETERS) php3_error(E_WARNING, "Unable to find stream pointer"); RETURN_FALSE; } +/* if (icap_create(icap_le_struct->icap_stream,calendar->value.str.val)) { RETURN_TRUE; @@ -473,6 +474,7 @@ void php3_icap_create_calendar(INTERNAL_FUNCTION_PARAMETERS) { RETURN_FALSE; } +*/ } /* }}} */ @@ -499,8 +501,10 @@ void php3_icap_rename_calendar(INTERNAL_FUNCTION_PARAMETERS) php3_error(E_WARNING, "Unable to find stream pointer"); RETURN_FALSE; } +/* if(icap_rename(icap_le_struct->icap_stream,src_calendar->value.str.val,dest_calendar->value.str.val)) {RETURN_TRUE;} else {RETURN_FALSE; } +*/ } /* }}} */ |