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/API
diff options
context:
space:
mode:
authorMatthieu Aubry <mattab@users.noreply.github.com>2016-10-20 03:18:40 +0300
committerGitHub <noreply@github.com>2016-10-20 03:18:40 +0300
commit46e930fdd3da323e51a21e5b77eca6f8c1e9d1f3 (patch)
tree420cf12639caf1b0fb120711e582f0315929f1c1 /core/API
parent8e491dc05f55ad0c624fb11b697349034ee862d3 (diff)
Make <code> blocks the backticks
Diffstat (limited to 'core/API')
-rw-r--r--core/API/Proxy.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/API/Proxy.php b/core/API/Proxy.php
index 9cef9ff840..a067022e47 100644
--- a/core/API/Proxy.php
+++ b/core/API/Proxy.php
@@ -108,8 +108,6 @@ class Proxy extends Singleton
// replace 'foo' and `bar` and "foobar" with code blocks... much magic
$doc = preg_replace('/`(.*?)`/', '<code>$1</code>', $doc);
- $doc = preg_replace('/"(.*?)"/', '<code>$1</code>', $doc);
- $doc = preg_replace("/'(.*?)'/", '<code>$1</code>', $doc);
$this->metadataArray[$className]['__documentation'] = $doc;
}