Skip to content

Commit

Permalink
Fixed issue: ForceAssets error on upgrade from 2.73
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Nov 30, 2018
1 parent e39a544 commit 4fe28e3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion application/models/Template.php
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,17 @@ public static function resetInstance()
{
self::$instance = null;
}


/**
* Alias function for resetAssetVersion()
* Don't delete this one to maintain updgrade compatibilty
* @return void
*/
public function forceAssets()
{
$this->resetAssetVersion();
}

/**
* Reset assets for this template
* Using DB only
Expand Down

0 comments on commit 4fe28e3

Please sign in to comment.