Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aembler committed Feb 25, 2015
1 parent 8c77a32 commit b64cabe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions web/concrete/single_pages/dashboard/extend/update.php
Expand Up @@ -46,7 +46,7 @@
?>

<tr>
<td class="ccm-marketplace-list-thumbnail" rowspan="2"><img src="<?=$ci->getPackageIconURL($pkg)?>" /></td>
<td class="ccm-marketplace-list-thumbnail" rowspan="2"><img style="max-width: 50px" src="<?=$ci->getPackageIconURL($pkg)?>" /></td>
<td class="ccm-addon-list-description"><h3><?=$pkg->getPackageName()?></h3><p><?=$pkg->getPackageDescription()?></p>
<p><strong><?=t('New Version: %s. Upgrading from: %s.', $pkg->getPackageVersionUpdateAvailable(), $pkg->getPackageVersion())?></strong></p>

Expand Down Expand Up @@ -84,7 +84,7 @@
foreach($pkgLocal as $pkg) { ?>

<tr>
<td class="ccm-marketplace-list-thumbnail" rowspan="2"><img src="<?=$ci->getPackageIconURL($pkg)?>" /></td>
<td class="ccm-marketplace-list-thumbnail" rowspan="2"><img style="max-width: 50px" src="<?=$ci->getPackageIconURL($pkg)?>" /></td>
<td class="ccm-addon-list-description"><h3><?=$pkg->getPackageName()?></h3><p><?=$pkg->getPackageDescription()?></p>
<p><strong><?=t('New Version: %s. Upgrading from: %s.', $pkg->getPackageVersion(), $pkg->getPackageCurrentlyInstalledVersion())?></strong></p>
</td>
Expand Down
2 changes: 1 addition & 1 deletion web/concrete/src/Package/Package.php
Expand Up @@ -952,7 +952,7 @@ public function upgradeCoreData()

public function upgrade()
{
$this->refreshDatabase();
$this->upgradeDatabase();

// now we refresh all blocks
$items = $this->getPackageItems();
Expand Down

0 comments on commit b64cabe

Please sign in to comment.