summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-03 13:29:35 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-03 13:29:35 +0000
commitbfcad06243bb77d4650bb8d5832a1740d4aea5c5 (patch)
tree5663ec15268e3b99530b1bdf23ebf47f0b7b0750
parente5e1b88cd41ae9ff9979a659e9dc861232a0b155 (diff)
- Use === operator
git-svn-id: https://svn.roundcube.net/trunk@3587 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--plugins/example_addressbook/example_addressbook.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/example_addressbook/example_addressbook.php b/plugins/example_addressbook/example_addressbook.php
index 081efcb13..58f187c0c 100644
--- a/plugins/example_addressbook/example_addressbook.php
+++ b/plugins/example_addressbook/example_addressbook.php
@@ -31,7 +31,7 @@ class example_addressbook extends rcube_plugin
public function get_address_book($p)
{
- if ($p['id'] == $this->abook_id) {
+ if ($p['id'] === $this->abook_id) {
require_once(dirname(__FILE__) . '/example_addressbook_backend.php');
$p['instance'] = new example_addressbook_backend;
}