Skip to content

Commit 94b1dad

Browse files
committed
Correction of double quotes
1 parent 97f0a30 commit 94b1dad

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

WordPress/Docs/PHP/DontExtractStandard.xml

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ $post_data = array(
2222
<code title="Invalid: Using `extract()` function">
2323
<![CDATA[
2424
$var_array = array(
25-
"title" => "My title",
26-
"content" => "My content",
27-
"ID" => 123
25+
'title' => 'My title',
26+
'content' => 'My content',
27+
'ID' => 123
2828
);
29+
2930
<em>extract( $var_array );</em>
3031
echo $title;
3132
]]>

0 commit comments

Comments
 (0)