appendices/ini.core.xml
d4d5216e7a965ca194f6b1c9dee84cecab2674e5
...
...
@@ -33,19 +33,19 @@
33
33
<row>
34
34
<entry><link linkend="ini.short-open-tag">short_open_tag</link></entry>
35
35
<entry>"1"</entry>
36
-
<entry>PHP_INI_PERDIR</entry>
36
+
<entry><constant>INI_PERDIR</constant></entry>
37
37
<entry></entry>
38
38
</row>
39
39
<row>
40
40
<entry><link linkend="ini.precision">precision</link></entry>
41
41
<entry>"14"</entry>
42
-
<entry>PHP_INI_ALL</entry>
42
+
<entry><constant>INI_ALL</constant></entry>
43
43
<entry></entry>
44
44
</row>
45
45
<row>
46
46
<entry><link linkend="ini.serialize-precision">serialize_precision</link></entry>
47
47
<entry>"-1"</entry>
48
-
<entry>PHP_INI_ALL</entry>
48
+
<entry><constant>INI_ALL</constant></entry>
49
49
<entry>
50
50
Prior to PHP 7.1.0, the default value was 17.
51
51
</entry>
...
...
@@ -53,7 +53,7 @@
53
53
<row>
54
54
<entry><link linkend="ini.disable-functions">disable_functions</link></entry>
55
55
<entry>""</entry>
56
-
<entry>PHP_INI_SYSTEM only</entry>
56
+
<entry><constant>INI_SYSTEM</constant> only</entry>
57
57
<entry></entry>
58
58
</row>
59
59
<row>
...
...
@@ -65,7 +65,7 @@
65
65
<row>
66
66
<entry><link linkend="ini.exit-on-timeout">exit_on_timeout</link></entry>
67
67
<entry>""</entry>
68
-
<entry>PHP_INI_ALL</entry>
68
+
<entry><constant>INI_ALL</constant></entry>
69
69
<entry></entry>
70
70
</row>
71
71
<row>
...
...
@@ -77,45 +77,51 @@
77
77
<row>
78
78
<entry><link linkend="ini.hard-timeout">hard_timeout</link></entry>
79
79
<entry>"2"</entry>
80
-
<entry>PHP_INI_SYSTEM</entry>
80
+
<entry><constant>INI_SYSTEM</constant></entry>
81
81
<entry>Available as of PHP 7.1.0.</entry>
82
82
</row>
83
83
<row>
84
84
<entry><link linkend="ini.zend.exception-ignore-args">zend.exception_ignore_args</link></entry>
85
85
<entry>"0"</entry>
86
-
<entry>PHP_INI_ALL</entry>
86
+
<entry><constant>INI_ALL</constant></entry>
87
87
<entry>Available as of PHP 7.4.0</entry>
88
88
</row>
89
89
<row>
90
90
<entry><link linkend="ini.zend.multibyte">zend.multibyte</link></entry>
91
91
<entry>"0"</entry>
92
-
<entry>PHP_INI_ALL</entry>
92
+
<entry><constant>INI_ALL</constant></entry>
93
93
<entry></entry>
94
94
</row>
95
95
<row>
96
96
<entry><link linkend="ini.zend.script-encoding">zend.script_encoding</link></entry>
97
97
<entry>NULL</entry>
98
-
<entry>PHP_INI_ALL</entry>
98
+
<entry><constant>INI_ALL</constant></entry>
99
99
<entry></entry>
100
100
</row>
101
101
<row>
102
102
<entry><link linkend="ini.zend.detect-unicode">zend.detect_unicode</link></entry>
103
103
<entry>NULL</entry>
104
-
<entry>PHP_INI_ALL</entry>
104
+
<entry><constant>INI_ALL</constant></entry>
105
105
<entry></entry>
106
106
</row>
107
107
<row>
108
108
<entry><link linkend="ini.zend.signal-check">zend.signal_check</link></entry>
109
109
<entry>"0"</entry>
110
-
<entry>PHP_INI_SYSTEM</entry>
110
+
<entry><constant>INI_SYSTEM</constant></entry>
111
111
<entry></entry>
112
112
</row>
113
113
<row>
114
114
<entry><link linkend="ini.zend.assertions">zend.assertions</link></entry>
115
115
<entry>"1"</entry>
116
-
<entry>PHP_INI_ALL with restrictions</entry>
116
+
<entry><constant>INI_ALL</constant> with restrictions</entry>
117
117
<entry></entry>
118
118
</row>
119
+
<row>
120
+
<entry><link linkend="ini.zend.exception-string-param-max-len">zend.exception_string_param_max_len</link></entry>
121
+
<entry>"15"</entry>
122
+
<entry><constant>INI_ALL</constant></entry>
123
+
<entry>Available as of PHP 8.0.0.</entry>
124
+
</row>
119
125
</tbody>
120
126
</tgroup>
121
127
</table>
...
...
@@ -255,6 +261,19 @@
255
261
</listitem>
256
262
</varlistentry>
257
263

264
+
<varlistentry xml:id="ini.zend.exception-string-param-max-len">
265
+
<term>
266
+
<parameter>zend.exception_string_param_max_len</parameter>
267
+
<type>int</type>
268
+
</term>
269
+
<listitem>
270
+
<simpara>
271
+
The maximum length of string function arguments in stringified stack traces.
272
+
Must range between <literal>"0"</literal> and <literal>"1000000"</literal>.
273
+
</simpara>
274
+
</listitem>
275
+
</varlistentry>
276
+

258
277
<varlistentry xml:id="ini.hard-timeout">
259
278
<term>
260
279
<parameter>hard_timeout</parameter>
...
...
@@ -262,6 +281,19 @@
262
281
</term>
263
282
<listitem>
264
283
<para>
284
+
When the timeout set in <link linkend="ini.max-execution-time">max_execution_time</link>
285
+
has been hit, the PHP runtime will tear down resources gracefully. If
286
+
something gets stuck while this happens, the hard timeout will tick
287
+
for the set amount of seconds. When the hard timeout is hit, PHP will
288
+
exit ungracefully. When set to 0, the hard timeout will never activate.
289
+
</para>
290
+
<para>
291
+
When PHP stops from a hard timeout, it will look something like this:
292
+
<screen>
293
+
<![CDATA[
294
+
Fatal error: Maximum execution time of 30+2 seconds exceeded (terminated) in Unknown on line 0
295
+
]]>
296
+
</screen>
265
297
</para>
266
298
</listitem>
267
299
</varlistentry>
...
...
@@ -309,7 +341,7 @@
309
341
is used, both zend.multibyte and zend.script_encoding must be used.
310
342
</para>
311
343
<para>
312
-
Literal strings will be transliterated from zend.script_enconding to
344
+
Literal strings will be transliterated from zend.script_encoding to
313
345
mbstring.internal_encoding, as if
314
346
<function>mb_convert_encoding</function> would have been called.
315
347
</para>
...
...
@@ -380,7 +412,7 @@
380
412
<row>
381
413
<entry><link linkend="ini.memory-limit">memory_limit</link></entry>
382
414
<entry>"128M"</entry>
383
-
<entry>PHP_INI_ALL</entry>
415
+
<entry><constant>INI_ALL</constant></entry>
384
416
<entry></entry>
385
417
</row>
386
418
</tbody>
...
...
@@ -434,13 +466,13 @@
434
466
<row>
435
467
<entry><link linkend="ini.realpath-cache-size">realpath_cache_size</link></entry>
436
468
<entry>"4M"</entry>
437
-
<entry>PHP_INI_SYSTEM</entry>
469
+
<entry><constant>INI_SYSTEM</constant></entry>
438
470
<entry>Prior to PHP 7.0.16 and 7.1.2, the default was <literal>"16K"</literal></entry>
439
471
</row>
440
472
<row>
441
473
<entry><link linkend="ini.realpath-cache-ttl">realpath_cache_ttl</link></entry>
442
474
<entry>"120"</entry>
443
-
<entry>PHP_INI_SYSTEM</entry>
475
+
<entry><constant>INI_SYSTEM</constant></entry>
444
476
<entry></entry>
445
477
</row>
446
478
</tbody>
...
...
@@ -514,91 +546,91 @@
514
546
<row>
515
547
<entry><link linkend="ini.arg-separator.output">arg_separator.output</link></entry>
516
548
<entry>"&amp;"</entry>
517
-
<entry>PHP_INI_ALL</entry>
549
+
<entry><constant>INI_ALL</constant></entry>
518
550
<entry></entry>
519
551
</row>
520
552
<row>
521
553
<entry><link linkend="ini.arg-separator.input">arg_separator.input</link></entry>
522
554
<entry>"&amp;"</entry>
523
-
<entry>PHP_INI_PERDIR</entry>
555
+
<entry><constant>INI_PERDIR</constant></entry>
524
556
<entry></entry>
525
557
</row>
526
558
<row>
527
559
<entry><link linkend="ini.variables-order">variables_order</link></entry>
528
560
<entry>"EGPCS"</entry>
529
-
<entry>PHP_INI_PERDIR</entry>
561
+
<entry><constant>INI_PERDIR</constant></entry>
530
562
<entry></entry>
531
563
</row>
532
564
<row>
533
565
<entry><link linkend="ini.request-order">request_order</link></entry>
534
566
<entry>""</entry>
535
-
<entry>PHP_INI_PERDIR</entry>
567
+
<entry><constant>INI_PERDIR</constant></entry>
536
568
<entry></entry>
537
569
</row>
538
570
<row>
539
571
<entry><link linkend="ini.auto-globals-jit">auto_globals_jit</link></entry>
540
572
<entry>"1"</entry>
541
-
<entry>PHP_INI_PERDIR</entry>
573
+
<entry><constant>INI_PERDIR</constant></entry>
542
574
<entry></entry>
543
575
</row>
544
576
<row>
545
577
<entry><link linkend="ini.register-argc-argv">register_argc_argv</link></entry>
546
578
<entry>"1"</entry>
547
-
<entry>PHP_INI_PERDIR</entry>
579
+
<entry><constant>INI_PERDIR</constant></entry>
548
580
<entry></entry>
549
581
</row>
550
582
<row>
551
583
<entry><link linkend="ini.enable-post-data-reading">enable_post_data_reading</link></entry>
552
584
<entry>"1"</entry>
553
-
<entry>PHP_INI_PERDIR</entry>
554
-
<entry>Available as of PHP 5.4.0</entry>
585
+
<entry><constant>INI_PERDIR</constant></entry>
586
+
<entry></entry>
555
587
</row>
556
588
<row>
557
589
<entry><link linkend="ini.post-max-size">post_max_size</link></entry>
558
590
<entry>"8M"</entry>
559
-
<entry>PHP_INI_PERDIR</entry>
591
+
<entry><constant>INI_PERDIR</constant></entry>
560
592
<entry></entry>
561
593
</row>
562
594
<row>
563
595
<entry><link linkend="ini.auto-prepend-file">auto_prepend_file</link></entry>
564
596
<entry>NULL</entry>
565
-
<entry>PHP_INI_PERDIR</entry>
597
+
<entry><constant>INI_PERDIR</constant></entry>
566
598
<entry></entry>
567
599
</row>
568
600
<row>
569
601
<entry><link linkend="ini.auto-append-file">auto_append_file</link></entry>
570
602
<entry>NULL</entry>
571
-
<entry>PHP_INI_PERDIR</entry>
603
+
<entry><constant>INI_PERDIR</constant></entry>
572
604
<entry></entry>
573
605
</row>
574
606
<row>
575
607
<entry><link linkend="ini.default-mimetype">default_mimetype</link></entry>
576
608
<entry>"text/html"</entry>
577
-
<entry>PHP_INI_ALL</entry>
609
+
<entry><constant>INI_ALL</constant></entry>
578
610
<entry></entry>
579
611
</row>
580
612
<row>
581
613
<entry><link linkend="ini.default-charset">default_charset</link></entry>
582
614
<entry>"UTF-8"</entry>
583
-
<entry>PHP_INI_ALL</entry>
615
+
<entry><constant>INI_ALL</constant></entry>
584
616
<entry></entry>
585
617
</row>
586
618
<row>
587
619
<entry><link linkend="ini.input-encoding">input_encoding</link></entry>
588
620
<entry>""</entry>
589
-
<entry>PHP_INI_ALL</entry>
621
+
<entry><constant>INI_ALL</constant></entry>
590
622
<entry></entry>
591
623
</row>
592
624
<row>
593
625
<entry><link linkend="ini.output-encoding">output_encoding</link></entry>
594
626
<entry>""</entry>
595
-
<entry>PHP_INI_ALL</entry>
627
+
<entry><constant>INI_ALL</constant></entry>
596
628
<entry></entry>
597
629
</row>
598
630
<row>
599
631
<entry><link linkend="ini.internal-encoding">internal_encoding</link></entry>
600
632
<entry>""</entry>
601
-
<entry>PHP_INI_ALL</entry>
633
+
<entry><constant>INI_ALL</constant></entry>
602
634
<entry></entry>
603
635
</row>
604
636
</tbody>
...
...
@@ -962,12 +994,6 @@
962
994
963
995
</variablelist>
964
996
</para>
965
-
<para>
966
-
See also: <link linkend="ini.magic-quotes-gpc">magic_quotes_gpc</link>,
967
-
<link linkend="ini.magic-quotes-runtime">magic_quotes_runtime</link>,
968
-
and
969
-
magic_quotes_sybase.
970
-
</para>
971
997
</section>
972
998
973
999
<section xml:id="ini.sect.path-directory">
...
...
@@ -988,43 +1014,43 @@
988
1014
<row>
989
1015
<entry><link linkend="ini.include-path">include_path</link></entry>
990
1016
<entry>".;/path/to/php/pear"</entry>
991
-
<entry>PHP_INI_ALL</entry>
1017
+
<entry><constant>INI_ALL</constant></entry>
992
1018
<entry></entry>
993
1019
</row>
994
1020
<row>
995
1021
<entry><link linkend="ini.open-basedir">open_basedir</link></entry>
996
1022
<entry>NULL</entry>
997
-
<entry>PHP_INI_ALL</entry>
1023
+
<entry><constant>INI_ALL</constant></entry>
998
1024
<entry></entry>
999
1025
</row>
1000
1026
<row>
1001
1027
<entry><link linkend="ini.doc-root">doc_root</link></entry>
1002
1028
<entry>NULL</entry>
1003
-
<entry>PHP_INI_SYSTEM</entry>
1029
+
<entry><constant>INI_SYSTEM</constant></entry>
1004
1030
<entry></entry>
1005
1031
</row>
1006
1032
<row>
1007
1033
<entry><link linkend="ini.user-dir">user_dir</link></entry>
1008
1034
<entry>NULL</entry>
1009
-
<entry>PHP_INI_SYSTEM</entry>
1035
+
<entry><constant>INI_SYSTEM</constant></entry>
1010
1036
<entry></entry>
1011
1037
</row>
1012
1038
<row>
1013
1039
<entry><link linkend="ini.user-ini.cache-ttl">user_ini.cache_ttl</link></entry>
1014
1040
<entry>"300"</entry>
1015
-
<entry>PHP_INI_SYSTEM</entry>
1041
+
<entry><constant>INI_SYSTEM</constant></entry>
1016
1042
<entry></entry>
1017
1043
</row>
1018
1044
<row>
1019
1045
<entry><link linkend="ini.user-ini.filename">user_ini.filename</link></entry>
1020
1046
<entry>".user.ini"</entry>
1021
-
<entry>PHP_INI_SYSTEM</entry>
1047
+
<entry><constant>INI_SYSTEM</constant></entry>
1022
1048
<entry></entry>
1023
1049
</row>
1024
1050
<row>
1025
1051
<entry><link linkend="ini.extension-dir">extension_dir</link></entry>
1026
1052
<entry>"/path/to/php"</entry>
1027
-
<entry>PHP_INI_SYSTEM</entry>
1053
+
<entry><constant>INI_SYSTEM</constant></entry>
1028
1054
<entry></entry>
1029
1055
</row>
1030
1056
<row>
...
...
@@ -1042,55 +1068,55 @@
1042
1068
<row>
1043
1069
<entry><link linkend="ini.cgi.check-shebang-line">cgi.check_shebang_line</link></entry>
1044
1070
<entry>"1"</entry>
1045
-
<entry>PHP_INI_SYSTEM</entry>
1071
+
<entry><constant>INI_SYSTEM</constant></entry>
1046
1072
<entry></entry>
1047
1073
</row>
1048
1074
<row>
1049
1075
<entry><link linkend="ini.cgi.discard-path">cgi.discard_path</link></entry>
1050
1076
<entry>"0"</entry>
1051
-
<entry>PHP_INI_SYSTEM</entry>
1077
+
<entry><constant>INI_SYSTEM</constant></entry>
1052
1078
<entry></entry>
1053
1079
</row>
1054
1080
<row>
1055
1081
<entry><link linkend="ini.cgi.fix-pathinfo">cgi.fix_pathinfo</link></entry>
1056
1082
<entry>"1"</entry>
1057
-
<entry>PHP_INI_SYSTEM</entry>
1083
+
<entry><constant>INI_SYSTEM</constant></entry>
1058
1084
<entry></entry>
1059
1085
</row>
1060
1086
<row>
1061
1087
<entry><link linkend="ini.cgi.force-redirect">cgi.force_redirect</link></entry>
1062
1088
<entry>"1"</entry>
1063
-
<entry>PHP_INI_SYSTEM</entry>
1089
+
<entry><constant>INI_SYSTEM</constant></entry>
1064
1090
<entry></entry>
1065
1091
</row>
1066
1092
<row>
1067
1093
<entry><link linkend="ini.cgi.nph">cgi.nph</link></entry>
1068
1094
<entry>"0"</entry>
1069
-
<entry>PHP_INI_SYSTEM</entry>
1095
+
<entry><constant>INI_SYSTEM</constant></entry>
1070
1096
<entry></entry>
1071
1097
</row>
1072
1098
<row>
1073
1099
<entry><link linkend="ini.cgi.redirect-status-env">cgi.redirect_status_env</link></entry>
1074
1100
<entry>NULL</entry>
1075
-
<entry>PHP_INI_SYSTEM</entry>
1101
+
<entry><constant>INI_SYSTEM</constant></entry>
1076
1102
<entry></entry>
1077
1103
</row>
1078
1104
<row>
1079
1105
<entry><link linkend="ini.cgi.rfc2616-headers">cgi.rfc2616_headers</link></entry>
1080
1106
<entry>"0"</entry>
1081
-
<entry>PHP_INI_ALL</entry>
1107
+
<entry><constant>INI_ALL</constant></entry>
1082
1108
<entry></entry>
1083
1109
</row>
1084
1110
<row>
1085
1111
<entry><link linkend="ini.fastcgi.impersonate">fastcgi.impersonate</link></entry>
1086
1112
<entry>"0"</entry>
1087
-
<entry>PHP_INI_SYSTEM</entry>
1113
+
<entry><constant>INI_SYSTEM</constant></entry>
1088
1114
<entry></entry>
1089
1115
</row>
1090
1116
<row>
1091
1117
<entry><link linkend="ini.fastcgi.logging">fastcgi.logging</link></entry>
1092
1118
<entry>"1"</entry>
1093
-
<entry>PHP_INI_SYSTEM</entry>
1119
+
<entry><constant>INI_SYSTEM</constant></entry>
1094
1120
<entry></entry>
1095
1121
</row>
1096
1122
</tbody>
...
...
@@ -1186,9 +1212,7 @@ include_path = ".:${USER}/pear/php"
1186
1212
<listitem>
1187
1213
<para>
1188
1214
Limit the files that can be accessed by PHP to the specified
1189
-
directory-tree, including the file itself. This directive
1190
-
is <emphasis>NOT</emphasis> affected by whether Safe Mode is
1191
-
turned On or Off.
1215
+
directory-tree, including the file itself.
1192
1216
</para>
1193
1217
<para>
1194
1218
When a script tries to access the filesystem, for example using
...
...
@@ -1248,6 +1272,12 @@ include_path = ".:${USER}/pear/php"
1248
1272
to <literal>0</literal> and thus <emphasis>disable</emphasis> the realpath cache.
1249
1273
</para>
1250
1274
</note>
1275
+
<caution>
1276
+
<para>
1277
+
<literal>open_basedir</literal> is just an extra safety net, that is in no way
1278
+
comprehensive, and can therefore not be relied upon when security is needed.
1279
+
</para>
1280
+
</caution>
1251
1281
</listitem>
1252
1282
</varlistentry>
1253
1283
...
...
@@ -1313,7 +1343,7 @@ include_path = ".:${USER}/pear/php"
1313
1343
<listitem>
1314
1344
<para>
1315
1345
In what directory PHP should look for dynamically loadable
1316
-
extensions. See also: <link linkend="ini.enable-dl">enable_dl</link>,
1346
+
extensions. It is recommended to specify an absolute path. See also: <link linkend="ini.enable-dl">enable_dl</link>,
1317
1347
and <function>dl</function>.
1318
1348
</para>
1319
1349
</listitem>
...
...
@@ -1528,37 +1558,37 @@ include_path = ".:${USER}/pear/php"
1528
1558
<row>
1529
1559
<entry><link linkend="ini.file-uploads">file_uploads</link></entry>
1530
1560
<entry>"1"</entry>
1531
-
<entry>PHP_INI_SYSTEM</entry>
1561
+
<entry><constant>INI_SYSTEM</constant></entry>
1532
1562
<entry></entry>
1533
1563
</row>
1534
1564
<row>
1535
1565
<entry><link linkend="ini.upload-tmp-dir">upload_tmp_dir</link></entry>
1536
1566
<entry>NULL</entry>
1537
-
<entry>PHP_INI_SYSTEM</entry>
1567
+
<entry><constant>INI_SYSTEM</constant></entry>
1538
1568
<entry></entry>
1539
1569
</row>
1540
1570
<row>
1541
1571
<entry><link linkend="ini.max-input-nesting-level">max_input_nesting_level</link></entry>
1542
1572
<entry>64</entry>
1543
-
<entry>PHP_INI_PERDIR</entry>
1573
+
<entry><constant>INI_PERDIR</constant></entry>
1544
1574
<entry></entry>
1545
1575
</row>
1546
1576
<row>
1547
1577
<entry><link linkend="ini.max-input-vars">max_input_vars</link></entry>
1548
1578
<entry>1000</entry>
1549
-
<entry>PHP_INI_PERDIR</entry>
1579
+
<entry><constant>INI_PERDIR</constant></entry>
1550
1580
<entry></entry>
1551
1581
</row>
1552
1582
<row>
1553
1583
<entry><link linkend="ini.upload-max-filesize">upload_max_filesize</link></entry>
1554
1584
<entry>"2M"</entry>
1555
-
<entry>PHP_INI_PERDIR</entry>
1585
+
<entry><constant>INI_PERDIR</constant></entry>
1556
1586
<entry></entry>
1557
1587
</row>
1558
1588
<row>
1559
1589
<entry><link linkend="ini.max-file-uploads">max_file_uploads</link></entry>
1560
1590
<entry>20</entry>
1561
-
<entry>PHP_INI_SYSTEM</entry>
1591
+
<entry><constant>INI_PERDIR</constant></entry>
1562
1592
<entry></entry>
1563
1593
</row>
1564
1594
</tbody>
...
...
@@ -1616,6 +1646,9 @@ include_path = ".:${USER}/pear/php"
1616
1646
<para>
1617
1647
The maximum size of an uploaded file.
1618
1648
</para>
1649
+
<para>
1650
+
<link linkend="ini.post-max-size">post_max_size</link> must be larger than this value.
1651
+
</para>
1619
1652
1620
1653
&ini.shorthandbytes;
1621
1654
...
...
@@ -1630,7 +1663,7 @@ include_path = ".:${USER}/pear/php"
1630
1663
<listitem>
1631
1664
<para>
1632
1665
The maximum number of files allowed to be uploaded simultaneously.
1633
-
Starting with PHP 5.3.4, upload fields left blank on submission do not
1666
+
Upload fields left blank on submission do not
1634
1667
count towards this limit.
1635
1668
</para>
1636
1669
</listitem>
...
...
@@ -1657,7 +1690,7 @@ include_path = ".:${USER}/pear/php"
1657
1690
<row>
1658
1691
<entry><link linkend="ini.sql.safe-mode">sql.safe_mode</link></entry>
1659
1692
<entry>"0"</entry>
1660
-
<entry>PHP_INI_SYSTEM</entry>
1693
+
<entry><constant>INI_SYSTEM</constant></entry>
1661
1694
<entry>Removed as of PHP 7.2.0</entry>
1662
1695
</row>
1663
1696
</tbody>
...
...
@@ -1710,7 +1743,7 @@ include_path = ".:${USER}/pear/php"
1710
1743
<row>
1711
1744
<entry><link linkend="ini.windows-show-crt-warning">windows.show_crt_warning</link></entry>
1712
1745
<entry>"0"</entry>
1713
-
<entry>PHP_INI_ALL</entry>
1746
+
<entry><constant>INI_ALL</constant></entry>
1714
1747
<entry></entry>
1715
1748
</row>
1716
1749
</tbody>
1717
1750