From 0964a9123f223d7d75fd01ffca18e9c2e77074b9 Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 16 Aug 2011 13:38:14 -0700 Subject: [PATCH] These conduit methods SHOULD allow unguarded writes. --- .../daemon/launched/ConduitAPI_daemon_launched_Method.php | 2 +- .../conduit/method/daemon/log/ConduitAPI_daemon_log_Method.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/conduit/method/daemon/launched/ConduitAPI_daemon_launched_Method.php b/src/applications/conduit/method/daemon/launched/ConduitAPI_daemon_launched_Method.php index 40de95cf49..636b9ab138 100644 --- a/src/applications/conduit/method/daemon/launched/ConduitAPI_daemon_launched_Method.php +++ b/src/applications/conduit/method/daemon/launched/ConduitAPI_daemon_launched_Method.php @@ -27,7 +27,7 @@ class ConduitAPI_daemon_launched_Method extends ConduitAPIMethod { } public function shouldAllowUnguardedWrites() { - return false; + return true; } public function getMethodDescription() { diff --git a/src/applications/conduit/method/daemon/log/ConduitAPI_daemon_log_Method.php b/src/applications/conduit/method/daemon/log/ConduitAPI_daemon_log_Method.php index c89469d77c..4965888273 100644 --- a/src/applications/conduit/method/daemon/log/ConduitAPI_daemon_log_Method.php +++ b/src/applications/conduit/method/daemon/log/ConduitAPI_daemon_log_Method.php @@ -27,7 +27,7 @@ class ConduitAPI_daemon_log_Method extends ConduitAPIMethod { } public function shouldAllowUnguardedWrites() { - return false; + return true; } public function getMethodDescription() {