diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-30 10:43:44 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-30 10:43:44 +0000 |
commit | 38fdb3d3a59c1d4ae4d0663d0930a6145705e776 (patch) | |
tree | cd8e27d602e7c80d7dbde5411a7978f434f1f9e2 | |
parent | 0ba2ce0c3d1aad8622c618795fab5551f9dd349d (diff) | |
download | elgg-38fdb3d3a59c1d4ae4d0663d0930a6145705e776.tar.gz elgg-38fdb3d3a59c1d4ae4d0663d0930a6145705e776.tar.bz2 |
Refs #102 - Speculative fix
git-svn-id: https://code.elgg.org/elgg/trunk@1206 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/plugins.php | 1 | ||||
-rw-r--r-- | languages/en.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index d68ce98ab..4955c97c3 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -287,6 +287,7 @@ if ($name!='title') { $plugin->title = $plugin_name; + $plugin->access_id = 2; $plugin->$name = $value; $plugin->save(); diff --git a/languages/en.php b/languages/en.php index bd39f86e4..df4b3b0c5 100644 --- a/languages/en.php +++ b/languages/en.php @@ -122,7 +122,7 @@ 'APIException:MissingHmac' => "Missing X-Elgg-hmac header",
'APIException:MissingHmacAlgo' => "Missing X-Elgg-hmac-algo header",
'APIException:MissingTime' => "Missing X-Elgg-time header",
- 'APIException:TemporalDrift' => "X-Elgg-time is too far in the past or future",
+ 'APIException:TemporalDrift' => "X-Elgg-time is too far in the past or future. Epoch fail.",
'APIException:NoQueryString' => "No data on the query string",
'APIException:MissingPOSTHash' => "Missing X-Elgg-posthash header",
'APIException:MissingPOSTAlgo' => "Missing X-Elgg-posthash_algo header",
|