require_once("include/pgettext.php");
-define ( 'FRIENDIKA_VERSION', '2.2.1061' );
+define ( 'FRIENDIKA_VERSION', '2.2.1062' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1077 );
}}
+function get_guid() {
+ $exists = true;
+ do {
+ $s = random_string(16);
+ $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
+ if(! results($r))
+ $exists = false;
+ } while($exists);
+ q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
+ return $s;
+}
+
// wrapper for adding a login box. If $register == true provide a registration
// link. This will most always depend on the value of $a->config['register_policy'].
}
if(strlen($text)) {
- $text = '<br /><br />' . $text;
+ $text = '<br /><br /><blockquote>' . $text . '</blockquote><br />';
}
echo sprintf($template,$url,($title) ? $title : $url,$text);