aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-06-23 05:18:58 -0700
committerredmatrix <git@macgirvin.com>2016-06-23 05:18:58 -0700
commite5c66d94f22d0efcdec0796872e9be81bff1bb4e (patch)
tree9b6cac3efd69cc4f4b9416b22d1ce9546862b0b2 /include/text.php
parent2a32713dfc3e508ba5cf21d552083438a438201d (diff)
downloadvolse-hubzilla-e5c66d94f22d0efcdec0796872e9be81bff1bb4e.tar.gz
volse-hubzilla-e5c66d94f22d0efcdec0796872e9be81bff1bb4e.tar.bz2
volse-hubzilla-e5c66d94f22d0efcdec0796872e9be81bff1bb4e.zip
relocate the cache class
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php28
1 files changed, 2 insertions, 26 deletions
diff --git a/include/text.php b/include/text.php
index 12b6b1137..89c3a0539 100644
--- a/include/text.php
+++ b/include/text.php
@@ -376,30 +376,6 @@ function unxmlify($s) {
return $ret;
}
-/**
- * Convenience wrapper, reverse the operation "bin2hex"
- * This is a built-in function in php >= 5.4
- *
- * @FIXME We already have php >= 5.4 requirements, so can we remove this?
- */
-if(! function_exists('hex2bin')) {
-function hex2bin($s) {
- if(! (is_string($s) && strlen($s)))
- return '';
-
- if(strlen($s) & 1) {
- logger('hex2bin: illegal hex string: ' . $s);
- return $s;
- }
-
- if(! ctype_xdigit($s)) {
- return($s);
- }
-
- return(pack("H*",$s));
-}}
-
-
// Automatic pagination.
// To use, get the count of total items.
// Then call App::set_pager_total($number_items);
@@ -1283,7 +1259,7 @@ function normalise_link($url) {
* is https and the other isn't, or if one is www.something and the other
* isn't - and also ignore case differences.
*
- * @see normalis_link()
+ * @see normalise_link()
*
* @param string $a
* @param string $b
@@ -1635,7 +1611,7 @@ function prepare_text($text, $content_type = 'text/bbcode', $cache = false) {
function create_export_photo_body(&$item) {
if(($item['verb'] === ACTIVITY_POST) && ($item['obj_type'] === ACTIVITY_OBJ_PHOTO)) {
- $j = json_decode($item['object'],true);
+ $j = json_decode($item['obj'],true);
if($j) {
$item['body'] .= "\n\n" . (($j['body']) ? $j['body'] : $j['bbcode']);
$item['sig'] = '';