Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-03-28 03:42:39 +0400
committermattab <matthieu.aubry@gmail.com>2013-03-28 03:42:40 +0400
commitae4b03163792f0b6e933933e5d37df87dc3fd566 (patch)
treed1d7510a9728f587d3d63ebd03e4ecf3d904838b /core/Updates/1.10.1.php
parent158c2150f5f2e13ece459b8d131244c11b763997 (diff)
Mass conversion of all files to the newly agreed coding standard: PSR 1/2
Converting Piwik core source files, PHP, JS, TPL, CSS More info: http://piwik.org/participate/coding-standards/
Diffstat (limited to 'core/Updates/1.10.1.php')
-rwxr-xr-xcore/Updates/1.10.1.php29
1 files changed, 13 insertions, 16 deletions
diff --git a/core/Updates/1.10.1.php b/core/Updates/1.10.1.php
index ee416d0edd..ac00818c2f 100755
--- a/core/Updates/1.10.1.php
+++ b/core/Updates/1.10.1.php
@@ -14,20 +14,17 @@
*/
class Piwik_Updates_1_10_1 extends Piwik_Updates
{
- static function isMajorUpdate()
- {
- return false;
- }
-
- static function update()
- {
- try
- {
- Piwik_PluginsManager::getInstance()->activatePlugin('Overlay');
- }
- catch(Exception $e)
- {
- // pass
- }
- }
+ static function isMajorUpdate()
+ {
+ return false;
+ }
+
+ static function update()
+ {
+ try {
+ Piwik_PluginsManager::getInstance()->activatePlugin('Overlay');
+ } catch (Exception $e) {
+ // pass
+ }
+ }
} \ No newline at end of file