didou           Fri May 21 22:48:12 2004 EDT

  Modified files:              
    /phpdoc/en/reference/com    reference.xml 
  Log:
  remove an empty line and use xhtml 
  # Wez, the examples should be xhtml and pear coding standards compliant
  
http://cvs.php.net/diff.php/phpdoc/en/reference/com/reference.xml?r1=1.8&r2=1.9&ty=u
Index: phpdoc/en/reference/com/reference.xml
diff -u phpdoc/en/reference/com/reference.xml:1.8 
phpdoc/en/reference/com/reference.xml:1.9
--- phpdoc/en/reference/com/reference.xml:1.8   Fri May 21 22:18:27 2004
+++ phpdoc/en/reference/com/reference.xml       Fri May 21 22:48:12 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
 <reference id="ref.com"> 
   <title>COM and .Net (Windows)</title> 
   <titleabbrev>COM</titleabbrev> 
@@ -90,7 +90,7 @@
 <%
 Set domainObject = GetObject("WinNT://Domain")
 For Each obj in domainObject
-  Response.Write obj.Name & "<br>"
+  Response.Write obj.Name & "<br />"
 Next
 %>
 ]]>
@@ -106,7 +106,7 @@
 <?php 
 $domainObject = new COM("WinNT://Domain"); 
 while ($obj = $domainObject->Next()) { 
-   echo $obj->Name . "<br>"; 
+   echo $obj->Name . "<br />"; 
 } 
 ?>
 ]]>
@@ -122,7 +122,7 @@
 <?php 
 $domainObject = new COM("WinNT://Domain"); 
 foreach ($domainObject as $obj) { 
-   echo $obj->Name . "<br>"; 
+   echo $obj->Name . "<br />"; 
 } 
 ?>
 ]]>
@@ -215,7 +215,6 @@
 sgml-minimize-attributes:nil
 sgml-always-quote-attributes:t
 sgml-indent-step:1
-
 sgml-indent-data:t
 indent-tabs-mode:nil
 sgml-parent-document:nil

Reply via email to