Skip to content

Commit

Permalink
Use correct version requirements in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Dec 11, 2016
1 parent 3dfca6c commit ababf4a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions html/docs/include/settings.php
Expand Up @@ -29,15 +29,15 @@
FUNC_REMOTE
),
'force_display_errors' => array(
'int', 0, "2.3",
'int', 0, ">= 2.3",
"<p>If this setting is set to <code>1</code> then errors will
<b>always</b> be displayed, no matter what the setting of PHP's <a
href='http://php.net/manual/en/errorfunc.configuration.php#ini.display-errors'>display_errors</a>
is.</p>",
FUNC_BASIC
),
'force_error_reporting' => array(
'int', 0, "2.3",
'int', 0, ">= 2.3",
"<p>This setting is a bitmask, like <a
href='http://php.net/manual/en/errorfunc.configuration.php#ini.error-reporting'>error_reporting</a>.
This bitmask will be logically ORed with the bitmask represented by <a
Expand All @@ -49,7 +49,7 @@
FUNC_BASIC
),
'halt_level' => array(
'int', 0, "2.3",
'int', 0, ">= 2.3",
"<p>This setting allows you to configure a mask that determines
whether, and which, notices and/or warnings get converted to errors. You can
configure notices and warnings that are generated by PHP, and notices and
Expand Down Expand Up @@ -147,7 +147,7 @@
),

'cli_color' => array(
'integer', 0, '> 2.2',
'integer', 0, '>= 2.2',
'<p>If this setting is 1, Xdebug will color var_dumps and stack traces
output when in CLI mode and when the output is a tty. On Windows, the
<a href="http://adoxa.110mb.com/ansicon/">ANSICON</a> tool needs to be
Expand All @@ -169,7 +169,7 @@
),

'collect_assignments' => array(
'boolean', 0, '> 2.1',
'boolean', 0, '>= 2.1',
"This setting, defaulting to 0, controls whether Xdebug should add
variable assignments to function traces.",
FUNC_FUNCTION_TRACE
Expand Down Expand Up @@ -332,7 +332,7 @@
),

'trace_enable_trigger' => array(
'boolean', 0, '> 2.2',
'boolean', 0, '>= 2.2',
"When this setting is set to 1, you can trigger the generation of trace
files by using the XDEBUG_TRACE GET/POST parameter, or set a cookie with the
name XDEBUG_TRACE. This will then write the trace data to
Expand All @@ -344,7 +344,7 @@
),

'trace_enable_trigger_value' => array(
'string', '""', '> 2.3',
'string', '""', '>= 2.3',
"This setting can be used to restrict who can make use of the
XDEBUG_TRACE functionality as outlined in [CFG:trace_enable_trigger]. When
changed from its default value of an empty string, the value of the cookie,
Expand All @@ -366,7 +366,7 @@
),

'remote_addr_header' => array(
'string', '""', '> 2.4',
'string', '""', '>= 2.4',
"If [CFG:remote_addr_header] is configured to be a non-empty string, then
the value is used as key in the \$SERVER superglobal array to determine which
header to use to find the IP address or hostname to use for 'connecting back
Expand All @@ -386,14 +386,14 @@
),

'remote_cookie_expire_time' => array(
'integer', 3600, '> 2.1',
'integer', 3600, '>= 2.1',
"This setting can be used to increase (or decrease) the time that the
remote debugging session stays alive via the session cookie.",
FUNC_REMOTE
),

'remote_connect_back' => array(
'boolean', 0, '> 2.1',
'boolean', 0, '>= 2.1',
"<p>If enabled, the [CFG:remote_host] setting is ignored and Xdebug will
try to connect to the client that made the HTTP request. It checks the
\$_SERVER['HTTP_X_FORWARDED_FOR'] and \$_SERVER['REMOTE_ADDR'] variables to
Expand Down Expand Up @@ -522,7 +522,7 @@
),

'profiler_enable_trigger_value' => array(
'string', '""', '> 2.3',
'string', '""', '>= 2.3',
"This setting can be used to restrict who can make use of the
XDEBUG_PROFILE functionality as outlined in [CFG:profiler_enable_trigger]. When
changed from its default value of an empty string, the value of the cookie,
Expand Down Expand Up @@ -608,7 +608,7 @@
),

'file_link_format' => array(
'string', '', '> 2.1',
'string', '', '>= 2.1',
'<p>This setting determines the format of the links that are made in
the display of stack traces where file names are used. This allows IDEs to set
up a link-protocol that makes it possible to go directly to a line and file by
Expand Down

0 comments on commit ababf4a

Please sign in to comment.