Initial commit
This commit is contained in:
11
#pma/templates/preview_sql.phtml
Normal file
11
#pma/templates/preview_sql.phtml
Normal file
@ -0,0 +1,11 @@
|
||||
<div class="preview_sql">
|
||||
<?php if (empty($query_data)): ?>
|
||||
<?= __('No change'); ?>
|
||||
<?php elseif (is_array($query_data)): ?>
|
||||
<?php foreach ($query_data as $query): ?>
|
||||
<?= PMA\libraries\Util::formatSql($query); ?>
|
||||
<?php endforeach; ?>
|
||||
<?php else: ?>
|
||||
<?= PMA\libraries\Util::formatSql($query_data); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
Reference in New Issue
Block a user