Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
fixed critical bug for older Contao versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzmg committed Mar 8, 2016
1 parent 38c5916 commit 52cec19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/modules/short_urls/classes/ShortURLs.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct()
public static function processTarget( $target )
{
// replace insert tags for Contao 3.5.7 and up
if( version_compare( VERSION . BUILD , '3.5.7', '>=' ) )
if( version_compare( VERSION . '.' . BUILD, '3.5.7', '>=' ) )
$target = \Controller::replaceInsertTags( $target );

// check for insert tag
Expand Down

0 comments on commit 52cec19

Please sign in to comment.