Syntax fix to output microtime correctly

This commit is contained in:
Matt Pass
2015-01-25 11:41:17 +00:00
parent bedd75c0c5
commit db44da92f1

View File

@@ -32,7 +32,7 @@ while (false !== ($file = readdir($handle))) {
}
sort($themeArray);
for ($i=0;$i<count($themeArray);$i++) {
echo '<link rel="stylesheet" href="../'.$ICEcoder["codeMirrorDir"].'/theme/'.$themeArray[$i].'.css?microtime=<?php echo microtime(true);?>">'.PHP_EOL;
echo '<link rel="stylesheet" href="../'.$ICEcoder["codeMirrorDir"].'/theme/'.$themeArray[$i].'.css?microtime='.microtime(true).'">'.PHP_EOL;
}
?>
</head>
@@ -303,4 +303,4 @@ var validatePasswords = function() {
</body>
</html>
</html>