Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify type of a few INI values #4347

Merged
merged 3 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions appendices/ini.core.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1499,14 +1499,14 @@ include_path = ".:${USER}/pear/php"
<varlistentry xml:id="ini.cgi.rfc2616-headers">
<term>
<parameter>cgi.rfc2616_headers</parameter>
<type>int</type>
<type>bool</type>
</term>
<listitem>
<para>
Tells PHP what type of headers to use when sending HTTP response
code. If it's set to 0, PHP sends a <link xlink:href="&url.rfc;3875">RFC 3875</link>
code. If it is disabled, PHP sends a <link xlink:href="&url.rfc;3875">RFC 3875</link>
"Status:" header that is supported by Apache and other web servers. When this option
is set to 1, PHP will send <link xlink:href="&url.rfc;2616">RFC 2616</link> compliant
is enabled, PHP will send <link xlink:href="&url.rfc;2616">RFC 2616</link> compliant
headers.
</para>
<para>
Expand All @@ -1516,23 +1516,23 @@ include_path = ".:${USER}/pear/php"
you should use header("Status: 404 Not Found");
</para>
<para>
Leave it set to 0 unless you know what you're doing.
Leave it disabled unless you know what you're doing.
</para>
</listitem>
</varlistentry>

<varlistentry xml:id="ini.fastcgi.impersonate">
<term>
<parameter>fastcgi.impersonate</parameter>
<type>string</type>
<type>bool</type>
</term>
<listitem>
<para>
FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
security tokens of the calling client. This allows IIS to define the
security context that the request runs under. mod_fastcgi under Apache
does not currently support this feature (03/17/2002)
Set to 1 if running under IIS. Default is zero.
Enable if running under IIS. Default is disabled.
</para>
</listitem>
</varlistentry>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/ini.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<varlistentry xml:id="ini.mysqli.allow-local-infile">
<term>
<parameter>mysqli.allow_local_infile</parameter>
<type>int</type>
<type>bool</type>
</term>
<listitem>
<para>
Expand All @@ -132,7 +132,7 @@
<varlistentry xml:id="ini.mysqli.allow-persistent">
<term>
<parameter>mysqli.allow_persistent</parameter>
<type>int</type>
<type>bool</type>
</term>
<listitem>
<para>
Expand Down
Loading