diff options
author | Friendika <info@friendika.com> | 2011-07-20 23:14:43 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-20 23:14:43 -0700 |
commit | 1d7d4bf8c6dcd8d3d70129d5a09228a62851cc74 (patch) | |
tree | 2f061ee489e1e8224c3ef61bb07088f2ec2b1fea /mod | |
parent | 530722568281188f262c5da5fcc8020528f1a3ac (diff) | |
download | volse-hubzilla-1d7d4bf8c6dcd8d3d70129d5a09228a62851cc74.tar.gz volse-hubzilla-1d7d4bf8c6dcd8d3d70129d5a09228a62851cc74.tar.bz2 volse-hubzilla-1d7d4bf8c6dcd8d3d70129d5a09228a62851cc74.zip |
wrong path for salmon verify
Diffstat (limited to 'mod')
-rw-r--r-- | mod/receive.php | 1 | ||||
-rw-r--r-- | mod/salmon.php | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/mod/receive.php b/mod/receive.php index 6e36109b3..6fb68e154 100644 --- a/mod/receive.php +++ b/mod/receive.php @@ -5,7 +5,6 @@ */ - require_once('include/salmon.php'); require_once('library/simplepie/simplepie.inc'); diff --git a/mod/salmon.php b/mod/salmon.php index 721eae437..56ac071b0 100644 --- a/mod/salmon.php +++ b/mod/salmon.php @@ -130,7 +130,7 @@ function salmon_post(&$a) { // Setup RSA stuff to verify the signature - set_include_path(get_include_path() . PATH_SEPARATOR . 'library' . PATH_SEPARATOR . 'phpsec'); + set_include_path(get_include_path() . PATH_SEPARATOR . 'library/phpsec'); require_once('library/phpsec/Crypt/RSA.php'); |