mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
remove an empty line and use xhtml
# Wez, the examples should be xhtml and pear coding standards compliant git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@159355 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a582be5380
commit
fb048d7005
1 changed files with 4 additions and 5 deletions
|
@ -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 @@ Next
|
|||
<?php
|
||||
$domainObject = new COM("WinNT://Domain");
|
||||
while ($obj = $domainObject->Next()) {
|
||||
echo $obj->Name . "<br>";
|
||||
echo $obj->Name . "<br />";
|
||||
}
|
||||
?>
|
||||
]]>
|
||||
|
@ -122,7 +122,7 @@ while ($obj = $domainObject->Next()) {
|
|||
<?php
|
||||
$domainObject = new COM("WinNT://Domain");
|
||||
foreach ($domainObject as $obj) {
|
||||
echo $obj->Name . "<br>";
|
||||
echo $obj->Name . "<br />";
|
||||
}
|
||||
?>
|
||||
]]>
|
||||
|
@ -215,7 +215,6 @@ sgml-shorttag:t
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue