]> granicus.if.org Git - php/commitdiff
Whitespace only
authorUlf Wendel <uw@php.net>
Wed, 11 Jul 2007 15:47:38 +0000 (15:47 +0000)
committerUlf Wendel <uw@php.net>
Wed, 11 Jul 2007 15:47:38 +0000 (15:47 +0000)
ext/mysql/tests/mysql_list_fields.phpt

index 5dbabf347de29ece193e7acf41f30438437ae485..500eb58c45d8f7c73d840185c5af542718005d75 100644 (file)
@@ -4,27 +4,26 @@ mysql_list_fields()
 <?php require_once('skipif.inc'); ?>
 --FILE--
 <?php
-    include_once "connect.inc";
+include_once "connect.inc";
 
-    $tmp    = NULL;   
-    $link   = NULL;
-       
-    if (false !== ($tmp = @mysql_list_fields($link, $link)))
-        printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);     
-            
-    require('table.inc');
-       
-    if (!$res = mysql_list_fields($db, 'test', $link))
-        printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
-     
-    if (!($num = mysql_num_fields($res)))
-        printf("[004] Empty field list? [%d] %s\n", mysql_errno($link), mysql_error($link));
+$tmp    = NULL;
+$link   = NULL;
 
-        
-    mysql_free_result($res);    
-    mysql_close($link);
-        
-    print "done!\n"; 
+if (false !== ($tmp = mysql_list_fields($link, $link)))
+       printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
+
+require('table.inc');
+
+if (!$res = mysql_list_fields($db, 'test', $link))
+       printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
+
+if (!($num = mysql_num_fields($res)))
+       printf("[004] Empty field list? [%d] %s\n", mysql_errno($link), mysql_error($link));
+
+mysql_free_result($res);
+mysql_close($link);
+
+print "done!\n";
 ?>
 --EXPECTF--
-done!
+done!
\ No newline at end of file