Fix further xref misuse

Cf. <https://github.com/php/doc-en/issues/1415#issuecomment-1044334812>.
This commit is contained in:
Christoph M. Becker 2022-02-18 13:19:17 +01:00
parent b9043112d8
commit 554db5a3a3
No known key found for this signature in database
GPG key ID: D66C9593118BCCB6
3 changed files with 10 additions and 10 deletions

View file

@ -57,9 +57,9 @@
launch on a different machine.
</simpara>
<simpara>
If you specify a non-&null; value for server, PHP will refuse to load
the object unless the <xref
linkend="ini.com.allow-dcom"/> configuration option
If a non-&null; value is specified for server, PHP will refuse to load
the object unless the <link
linkend="ini.com.allow-dcom">com.allow_dcom</link> &php.ini; option
is set to &true;.
</simpara>
<para>
@ -68,8 +68,8 @@
(although you need to specify both Username and Password together); if
you omit the Server setting, the default server will be used (as
mentioned above), and the instantiation of the object will not be
affected by the <xref linkend="ini.com.allow-dcom"/>
directive.
affected by the <link linkend="ini.com.allow-dcom">com.allow_dcom</link>
&php.ini; directive.
<table>
<title>DCOM server name</title>
<tgroup cols="3">

View file

@ -91,8 +91,8 @@
the typelibrary of <classname>COM</classname> objects that it instantiates, if those objects
implement the interfaces required to obtain that information.
The case sensitivity of the constants it registers is controlled by the
<xref
linkend="ini.com.autoregister-casesensitive"/> configuration directive.
<link
linkend="ini.com.autoregister-casesensitive">com.autoregister_casesensitive</link> &php.ini; directive.
</para>
</listitem>
</varlistentry>

View file

@ -199,9 +199,9 @@ mysql_close($link);
override this and try to connect to a local socket (named pipe on
Windows). If you want to use TCP/IP, use &quot;127.0.0.1&quot;
instead of &quot;localhost&quot;. If the MySQL client library tries to
connect to the wrong local socket, you should set the correct path as
<xref linkend="ini.mysql.default-host" /> in your PHP configuration and leave the server field
blank.
connect to the wrong local socket, the correct path should be set as
<link linkend="ini.mysql.default-host">mysql.default_host</link> in &php.ini; and the server field
left blank.
</para>
</note>
<note>