1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

Cache busting for adminer.css

This commit is contained in:
Jonathon Sim
2019-04-01 23:42:55 +01:00
committed by Jakub Vrana
parent 327041874e
commit 7f32e26759
2 changed files with 2 additions and 1 deletions

View File

@@ -108,7 +108,7 @@ class Adminer {
$return = array();
$filename = "adminer.css";
if (file_exists($filename)) {
$return[] = $filename;
$return[] = "$filename?v=" . crc32(file_get_contents($filename));
}
return $return;
}

View File

@@ -2,6 +2,7 @@ Adminer 4.7.2-dev:
Do not attempt logging in without password (bug #676)
Stretch footer over the whole table width (bug #624)
Allow overwriting tables when copying them
Cache busting for adminer.css
MySQL: Fix creating users and changing password in MySQL 8 (bug #663)
MySQL: Pass SRID to GeomFromText