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
path: root/core
diff options
context:
space:
mode:
authord-skora <d.skora@clearcode.cc>2014-10-06 19:03:04 +0400
committerd-skora <d.skora@clearcode.cc>2014-10-15 14:44:37 +0400
commitfa99aef41e32849921f90d3b4d3ab0b5c0019004 (patch)
tree523f34f5ddb2eb4569e741686a586ba507574c4b /core
parentdfa827e9b443d7762afe026dec691a89138fa12f (diff)
hide without parameter and hide for methods
Diffstat (limited to 'core')
-rw-r--r--core/API/Proxy.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/API/Proxy.php b/core/API/Proxy.php
index 328a18be53..2f4d9abfc1 100644
--- a/core/API/Proxy.php
+++ b/core/API/Proxy.php
@@ -373,7 +373,7 @@ class Proxy extends Singleton
$hideLine = strstr($docComment, '@hide');
if($hideLine) {
$hideString = trim(str_replace("@hide", "", strtok($hideLine, "\n")));
- $response = false;
+ $response = true;
if($hideString) {
$hideArray = explode(" ", $hideString);
$hideString = $hideArray[0];