diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-08-30 12:32:13 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-08-30 12:32:13 +0000 |
| commit | 114bc8f78465ba8929a5034e71d9526c7dd64ef7 (patch) | |
| tree | 2bb05b088f4c17f5d850b5a30c605fc4dd125320 /plugins/enigma | |
| parent | 6b2489f4d71ab823b1ab1b4e54fae7cd377ac53d (diff) | |
- PHP 5.3 fixes
git-svn-id: https://svn.roundcube.net/trunk@3924 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/enigma')
| -rw-r--r-- | plugins/enigma/enigma.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/enigma/enigma.php b/plugins/enigma/enigma.php index 808ee656d..ad4f65a0e 100644 --- a/plugins/enigma/enigma.php +++ b/plugins/enigma/enigma.php @@ -354,7 +354,7 @@ class enigma extends rcube_plugin private function parse_plain(&$p) { $this->load_engine(); - $this->engine->parse_plain(&$p); + $this->engine->parse_plain($p); } /** @@ -366,7 +366,7 @@ class enigma extends rcube_plugin private function parse_signed(&$p) { $this->load_engine(); - $this->engine->parse_signed(&$p); + $this->engine->parse_signed($p); } /** @@ -377,7 +377,7 @@ class enigma extends rcube_plugin private function parse_encrypted(&$p) { $this->load_engine(); - $this->engine->parse_encrypted(&$p); + $this->engine->parse_encrypted($p); } /** |
