diff --git a/reference/errorfunc/functions/debug-backtrace.xml b/reference/errorfunc/functions/debug-backtrace.xml
index 5c7e30ea37..9f98c51c61 100644
--- a/reference/errorfunc/functions/debug-backtrace.xml
+++ b/reference/errorfunc/functions/debug-backtrace.xml
@@ -5,7 +5,7 @@
debug_backtrace
Generates a backtrace
-
+
&reftitle.description;
@@ -16,7 +16,7 @@
debug_backtrace generates a PHP backtrace.
-
+
&reftitle.parameters;
@@ -27,34 +27,34 @@
Since 5.3.6, this parameter is a bitmask for the following options:
- debug_backtrace options
-
-
-
- DEBUG_BACKTRACE_PROVIDE_OBJECT
-
- Whether or not to populate the "object" index.
-
-
-
- DEBUG_BACKTRACE_IGNORE_ARGS
-
- Whether or not to omit the "args" index and thus all the method arguments to
- to save memory.
-
-
-
-
-
- Before 5.3.6, only value recognized is &true; or &false;, which is the same as
- setting and unsetting DEBUG_BACKTRACE_PROVIDE_OBJECT option.
+ debug_backtrace options
+
+
+
+ DEBUG_BACKTRACE_PROVIDE_OBJECT
+
+ Whether or not to populate the "object" index.
+
+
+
+ DEBUG_BACKTRACE_IGNORE_ARGS
+
+ Whether or not to omit the "args" index and thus all the method arguments to
+ to save memory.
+
+
+
+
+
+ Before 5.3.6, only value recognized is &true; or &false;, which is the same as
+ setting and unsetting DEBUG_BACKTRACE_PROVIDE_OBJECT option.
-
+
&reftitle.returnvalues;
@@ -133,7 +133,7 @@
-
+
&reftitle.changelog;
@@ -150,7 +150,7 @@
5.3.6
The parameter provide_object changed to options and additional option
- DEBUG_BACKTRACE_IGNORE_ARGS is added.
+ DEBUG_BACKTRACE_IGNORE_ARGS is added.
@@ -170,7 +170,7 @@
-
+
&reftitle.examples;
@@ -198,7 +198,7 @@ include_once '/tmp/a.php';
Results similar to the following when executing
- /tmp/b.php:
+ /tmp/b.php:
-
+
&reftitle.seealso;