summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-04-01 15:42:08 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-07 13:30:30 +0200
commitfeb9a6e21630724f3388ea219daccca3b13f69d0 (patch)
tree4e4b8c431968feaa8079b1c2bbd55c473ce804b8
parent43c0af2580a615f328c0a3a6d0d6256b4e625f3f (diff)
downloadnextcloud-server-feb9a6e21630724f3388ea219daccca3b13f69d0.tar.gz
nextcloud-server-feb9a6e21630724f3388ea219daccca3b13f69d0.zip
Set human readable module ids
-rw-r--r--apps/encryption/lib/crypto/encryption.php2
-rw-r--r--apps/encryption_dummy/lib/dummymodule.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/encryption/lib/crypto/encryption.php b/apps/encryption/lib/crypto/encryption.php
index c3fd3405366..b66be26370f 100644
--- a/apps/encryption/lib/crypto/encryption.php
+++ b/apps/encryption/lib/crypto/encryption.php
@@ -16,7 +16,7 @@ use OCA\Encryption\KeyManager;
class Encryption implements IEncryptionModule {
- const ID = '42';
+ const ID = 'OC_DEFAULT_MODULE';
/**
* @var Crypt
diff --git a/apps/encryption_dummy/lib/dummymodule.php b/apps/encryption_dummy/lib/dummymodule.php
index 55e8f26af95..8cec9dfaf4c 100644
--- a/apps/encryption_dummy/lib/dummymodule.php
+++ b/apps/encryption_dummy/lib/dummymodule.php
@@ -34,7 +34,7 @@ class DummyModule implements IEncryptionModule {
* @return string defining the technical unique id
*/
public function getId() {
- return "34876934";
+ return "OC_DUMMY_MODULE";
}
/**