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

Commit

Permalink
Fix a comparison in the repository manager (see #8422).
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Aug 2, 2016
1 parent d513ea1 commit 8b00896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/modules/repository/classes/RepositoryManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ protected function upgrade($aParams)
foreach ($exts as $ext) {
if ((int)$ext->updprot==0) {
$label =
($ext->version != $ext->upd_version || $ext->upd_build != $ext->upd_build)
($ext->version != $ext->upd_version || $ext->build != $ext->upd_build)
? $text['updatingext']
: $text['validatingext'];
$rep->log .=
Expand Down

0 comments on commit 8b00896

Please sign in to comment.