Skip to content

Commit ea17842

Browse files
authored
readme update
readme update
2 parents 8e31b18 + eb3c56d commit ea17842

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: ecommerce, e-commerce, storefront, shopping cart, online store
44
License: GPLv2 or later
55
License URI: https://www.gnu.org/licenses/gpl-2.0.html
66
Requires at least: 4.4
7-
Tested up to: 6.8
7+
Tested up to: 6.9
88
Stable tag: 7.0.4
99

1010
Powerful, easy to use ecommerce shopping cart for WordPress. Sell on Facebook and Instagram. iPhone & Android apps. Superb support.

templates/debug.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,11 @@
215215
<iframe width="80%" height="500px" srcdoc="
216216
<?php
217217
ob_start();
218-
phpinfo();
218+
if( function_exists( 'phpinfo' ) ) {
219+
phpinfo();
220+
} else {
221+
echo 'phpinfo() function is not available';
222+
}
219223
$contents = ob_get_contents();
220224
ob_end_clean();
221225
echo esc_attr( $contents );

0 commit comments

Comments
 (0)