diff options
author | friendica <info@friendica.com> | 2014-02-17 19:48:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-17 19:48:05 -0800 |
commit | d6ab975b188778a0be936c3065b502e0c58b8c91 (patch) | |
tree | 8a66ae676e7637ad5335e3ec1fd47a55dca0bfcb /include/text.php | |
parent | 7fc292831cfc86cf818c3fb71596ef8acb01f689 (diff) | |
download | volse-hubzilla-d6ab975b188778a0be936c3065b502e0c58b8c91.tar.gz volse-hubzilla-d6ab975b188778a0be936c3065b502e0c58b8c91.tar.bz2 volse-hubzilla-d6ab975b188778a0be936c3065b502e0c58b8c91.zip |
operation snakebite continued. openid now works for local accounts using the rmagic module and after storing your openid in pconfig. This is just an interesting but trivial (in the bigger scheme of things) side effect of snakebite. The snake hasn't even waken up yet.
Diffstat (limited to 'include/text.php')
-rwxr-xr-x | include/text.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php index 2f5accf6e..2bf760035 100755 --- a/include/text.php +++ b/include/text.php @@ -1924,3 +1924,7 @@ function in_arrayi($needle, $haystack) { return in_array(strtolower($needle), array_map('strtolower', $haystack)); } +function normalise_openid($s) { + return trim(str_replace(array('http://','https://'),array('',''),$s),'/'); +} + |