From: Mattias Bengtsson Date: Mon, 5 Nov 2007 01:14:18 +0000 (+0000) Subject: - Right filename X-Git-Tag: php-5.2.5~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5697c1a9ac188c40b7ebd0e8827bd65507284bf0;p=php - Right filename --- diff --git a/ext/gd/tests/bug43121.phpt b/ext/gd/tests/bug43121.phpt index eecf7d31e2..ce2d1d6f6f 100644 --- a/ext/gd/tests/bug43121.phpt +++ b/ext/gd/tests/bug43121.phpt @@ -9,7 +9,7 @@ Bug #43121 (gdImageFill with IMG_COLOR_TILED crashes httpd) $im = ImageCreate( 200, 100 ); $black = ImageColorAllocate( $im, 0, 0, 0 ); -$im_tile = ImageCreateFromGif( "transback.gif" ); +$im_tile = ImageCreateFromGif(dirname(__FILE__) . "/bug43121.gif" ); ImageSetTile( $im, $im_tile ); ImageFill( $im, 0, 0, IMG_COLOR_TILED );