diff options
author | foobar <sniper@php.net> | 2000-09-08 12:28:00 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2000-09-08 12:28:00 +0000 |
commit | 24b2feff633ef653781cc0e8231e1be3fe917c8b (patch) | |
tree | 5c2ff7eff1e8f905af3eca7644a560500163b1eb | |
parent | df5e0cb0a5570a4670efb0a3859b413c6ce310be (diff) | |
download | php-git-24b2feff633ef653781cc0e8231e1be3fe917c8b.tar.gz |
Fixed typo. Changed php3_error to php_error.
-rw-r--r-- | ext/pdf/pdf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdf/pdf.c b/ext/pdf/pdf.c index d765e6858e..7987f38ded 100644 --- a/ext/pdf/pdf.c +++ b/ext/pdf/pdf.c @@ -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 { |