Changes between Initial Version and Version 3 of Ticket #48272
- Timestamp:
- 10/12/2019 01:37:38 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #48272
- Property Keywords reporter-feedback added
- Property Focuses coding-standards removed
-
Ticket #48272 – Description
initial v3 4 4 5 5 ===========Notice error============= 6 {{{ 6 7 <br /> 7 8 <b>Notice</b>: Undefined offset: 1 in <b>/var/www/html/wpfdemo/wp-includes/functions.php</b> on line <b>964</b><br /> 9 }}} 8 10 9 11 10 12 ============Solution=============== 13 {{{ 11 14 $qs[ $args[0] ] = $args[1]; 15 }}} 12 16 To 17 {{{ 13 18 $qs[ $args[0] ] = $args[0]; 19 }}} 14 20 15 21 =================================