Skip to content

Commit

Permalink
refs #4996 added update script b4 to make sure this update will be ex…
Browse files Browse the repository at this point in the history
…ecuted
  • Loading branch information
tsteur committed Sep 15, 2014
1 parent b9d67f8 commit 7aa9252
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions core/Updates/2.7.0-b4.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/

namespace Piwik\Updates;

use Piwik\Updates;

/**
*/
class Updates_2_7_0_b4 extends Updates
{
static function update()
{
$pluginManager = \Piwik\Plugin\Manager::getInstance();

try {
$pluginManager->activatePlugin('Contents');
} catch(\Exception $e) {
}
}
}

0 comments on commit 7aa9252

Please sign in to comment.