-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#4052 - Use
mfiletime
as version resource on generated custom fonts…
… css. Signed-off-by: Kev Provance <[email protected]>
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
* @package Redux | ||
* @author Kevin Provance <[email protected]> & Dovy Paukstys <[email protected]> | ||
* @class Redux_Extension_Custom_Fonts | ||
* @version 4.4.2 | ||
* @version 4.5.6 | ||
* | ||
* @noinspection PhpHierarchyChecksInspection | ||
* @noinspection PhpDocFinalChecksInspection | ||
|
@@ -26,7 +26,7 @@ class Redux_Extension_Custom_Fonts extends Redux_Extension_Abstract { | |
* | ||
* @var string | ||
*/ | ||
public static $version = '4.4.2'; | ||
public static $version = '4.5.6'; | ||
|
||
/** | ||
* Extension friendly name. | ||
|
@@ -232,7 +232,7 @@ public function enqueue_output() { | |
'redux-custom-fonts', | ||
$this->upload_url . 'fonts.css', | ||
array(), | ||
time() | ||
filemtime( $this->upload_dir . 'fonts.css' ) | ||
); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters