d569850b by Marty Penner

Modifying default behavior of array2table so the action form is not shown

1 parent 5bdadc6a
<?php
namespace Tz\WordPress\Tools\MySQLTable;
function array2table($arr, $width = "100%", $with_form = true) {
function array2table($arr, $width = "100%", $with_form = false) {
$count = count($arr);
if (!$count) echo '';
......