Skip to content

Commit

Permalink
Update cache busting parameter and add a key for that
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Buckpesch committed Nov 17, 2017
1 parent 20214c5 commit f3cea77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppArena/Models/CssCompiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public function getCompiledCss() {

// Attach a cache busting parameter to the app, when the GET parameter preview is set to true
if (isset($_GET['preview']) && $_GET['preview']) {
$relativePath .= '?' . time();
$relativePath .= '?v=' . time();
}


Expand Down

0 comments on commit f3cea77

Please sign in to comment.