]> granicus.if.org Git - php/commitdiff
Fixed typo. Changed php3_error to php_error.
authorfoobar <sniper@php.net>
Fri, 8 Sep 2000 12:28:00 +0000 (12:28 +0000)
committerfoobar <sniper@php.net>
Fri, 8 Sep 2000 12:28:00 +0000 (12:28 +0000)
ext/pdf/pdf.c

index d765e6858e6957241e7fd5f790ecb6b5fa0a64c5..7987f38ded5d751970e53e986a64e08bda4cf151 100644 (file)
@@ -88,7 +88,7 @@ function_entry pdf_functions[] = {
        PHP_FE(pdf_set_info_title, NULL)        /* deprecated */
        PHP_FE(pdf_set_info_subject, NULL)      /* deprecated */
        PHP_FE(pdf_set_info_author, NULL)       /* deprecated */
-       PHP_FE(pdf_set_info_keywords, NULL)     /* deprecated /*
+       PHP_FE(pdf_set_info_keywords, NULL)     /* deprecated */
        PHP_FE(pdf_open, NULL)
        PHP_FE(pdf_close, NULL)
        PHP_FE(pdf_begin_page, NULL)
@@ -456,7 +456,7 @@ PHP_FUNCTION(pdf_open) {
 #if defined PDF_OPEN_MEM_SUPPORTED
                fp = NULL;
 #else
-               php3_error(E_WARNING, "Your version of pdflib does not support in memory creation of PDF documents. You have to pass a file handle to pdf_open()");
+               php_error(E_WARNING, "Your version of pdflib does not support in memory creation of PDF documents. You have to pass a file handle to pdf_open()");
                WRONG_PARAM_COUNT;
 #endif
        } else {