Skip to content

Commit b08d714

Browse files
committed
1.9.240801 fixed one php short open tag
1 parent 5de0fca commit b08d714

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ In the directory samples you'll find phpminiconfig.php for known OpenSource pack
3939

4040
## Change Log
4141

42-
### changes in phpMiniAdmin 1.9.240727 (latest)
42+
### changes in phpMiniAdmin 1.9.240801 (latest)
43+
- fixed one php short open tag
44+
45+
### changes in phpMiniAdmin 1.9.240727
4346
- support for PHP 8.3 (cleaned up some PHP Warnings, deprecations)
4447
- enhancements:
4548
- multiple db servers support - define server's configs via `$DBSERVERS` and quickly switch between servers via top navbar dropdown

phpminiadmin.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
if (function_exists('date_default_timezone_set')) date_default_timezone_set('UTC');#required by PHP 5.1+
3535

3636
//constants
37-
$VERSION='1.9.240727';
37+
$VERSION='1.9.240801';
3838
$MAX_ROWS_PER_PAGE=50; #max number of rows in select per one page
3939
$D="\r\n"; #default delimiter for export
4040
$BOM=chr(239).chr(187).chr(191);
@@ -474,7 +474,7 @@ function sht(f){
474474
if ($DBSERVERS){?>
475475
| Servers: <select name="srv" onChange="frefresh()"><option value=''>- select/refresh -</option>
476476
<?php echo @sel($DBSERVERS,'iname',$SRV)?></select>
477-
<?}
477+
<?php }
478478
?>
479479
&#183; <a href="?<?php eo("$xurl&db=".ue($dbn)."&srv=".ue($SRV).'&q='.b64u("show processlist"))?>">ps</a>
480480
| <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>

0 commit comments

Comments
 (0)