Skip to content

Commit

Permalink
1.9.240801 fixed one php short open tag
Browse files Browse the repository at this point in the history
  • Loading branch information
osalabs committed Aug 1, 2024
1 parent 5de0fca commit b08d714
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ In the directory samples you'll find phpminiconfig.php for known OpenSource pack

## Change Log

### changes in phpMiniAdmin 1.9.240727 (latest)
### changes in phpMiniAdmin 1.9.240801 (latest)
- fixed one php short open tag

### changes in phpMiniAdmin 1.9.240727
- support for PHP 8.3 (cleaned up some PHP Warnings, deprecations)
- enhancements:
- multiple db servers support - define server's configs via `$DBSERVERS` and quickly switch between servers via top navbar dropdown
Expand Down
4 changes: 2 additions & 2 deletions phpminiadmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
if (function_exists('date_default_timezone_set')) date_default_timezone_set('UTC');#required by PHP 5.1+

//constants
$VERSION='1.9.240727';
$VERSION='1.9.240801';
$MAX_ROWS_PER_PAGE=50; #max number of rows in select per one page
$D="\r\n"; #default delimiter for export
$BOM=chr(239).chr(187).chr(191);
Expand Down Expand Up @@ -474,7 +474,7 @@ function sht(f){
if ($DBSERVERS){?>
| Servers: <select name="srv" onChange="frefresh()"><option value=''>- select/refresh -</option>
<?php echo @sel($DBSERVERS,'iname',$SRV)?></select>
<?}
<?php }
?>
&#183; <a href="?<?php eo("$xurl&db=".ue($dbn)."&srv=".ue($SRV).'&q='.b64u("show processlist"))?>">ps</a>
| <a href="?<?php eo($xurl.'&q='.b64u("show databases"))?>">Databases</a>: <select name="db" onChange="frefresh()"><option value='*'> - select/refresh -</option><option value=''> - show all -</option>
Expand Down

0 comments on commit b08d714

Please sign in to comment.