From: Rasmus Lerdorf <rasmus@php.net>
Date: Wed, 10 Nov 1999 18:57:19 +0000 (+0000)
Subject: This arg is optional
X-Git-Tag: php-4.0b3_RC5~40
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2de9baf655530af3fe25753af2b817d42f835cb0;p=php

This arg is optional
---

diff --git a/ext/gd/gd.c b/ext/gd/gd.c
index 91cfc1f505..b2b7a8bcf9 100644
--- a/ext/gd/gd.c
+++ b/ext/gd/gd.c
@@ -412,7 +412,7 @@ void php3_imagecreatefrompng (INTERNAL_FUNCTION_PARAMETERS) {
 }
 /* }}} */
 
-/* {{{ proto int imagepng(int im, string filename)
+/* {{{ proto int imagepng(int im [, string filename])
 Output image to browser or file */
 void php3_imagepng (INTERNAL_FUNCTION_PARAMETERS) {
       pval *imgind, *file;
@@ -524,7 +524,7 @@ PHP_FUNCTION(imagecreatefromgif )
 }
 /* }}} */
 
-/* {{{ proto int imagegif(int im, string filename)
+/* {{{ proto int imagegif(int im [, string filename])
 Output image to browser or file */
 PHP_FUNCTION(imagegif )
 {