From 7982e70910bb5a8845333001680a4b68db4cba81 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 21 Jan 2006 07:03:11 +0000 Subject: [PATCH] Add another way to disable all relations --- api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.php b/api.php index 8f074d6..08b9f78 100644 --- a/api.php +++ b/api.php @@ -467,7 +467,7 @@ class API */ function call_relations($method) { - if (in_array($method, $this->norelations)) + if (in_array($method, $this->norelations) OR $this->norelations === true) { return; } -- 2.22.5