We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b7c9b7 commit 5c948cfCopy full SHA for 5c948cf
docs/Customizing/QROutputAbstract.md
@@ -211,7 +211,7 @@ class MyOutput extends QROutputAbstract{
211
// loop over the paths
212
foreach($paths as $M_TYPE_LAYER => &$path){
213
214
- if(empty($path)){
+ if($path === []){
215
continue;
216
}
217
docs/qroptions-doc.php
@@ -67,7 +67,7 @@
67
68
69
// add a "see also" section
70
- if(!empty($see)){
+ if($see !== []){
71
$content[] = "\n**See also:**\n";
72
73
foreach($see as $line){
@@ -96,7 +96,7 @@
96
97
98
// add "Links" section
99
- if(!empty($link)){
+ if($link !== []){
100
$content[] = "\n**Links:**\n";
101
102
foreach($link as $line){
0 commit comments