several unrelated things - auto_follow wasn't working for new accounts, error returned in private mention to a collection, and added auto-completion to photo tags; though it only matches people so the hover text is now wrong. Also made the photo edit form XHTML (XML) compliant.
This commit is contained in:
@@ -176,6 +176,7 @@ function create_identity($arr) {
|
||||
// save this for auto_friending
|
||||
$total_identities = $ret['total_identities'];
|
||||
|
||||
|
||||
$nick = mb_strtolower(trim($arr['nickname']));
|
||||
if(! $nick) {
|
||||
$ret['message'] = t('Nickname is required.');
|
||||
@@ -404,6 +405,7 @@ function create_identity($arr) {
|
||||
|
||||
$accts = get_config('system','auto_follow');
|
||||
if(($accts) && (! $total_identities)) {
|
||||
require_once('include/follow.php');
|
||||
if(! is_array($accts))
|
||||
$accts = array($accts);
|
||||
foreach($accts as $acct) {
|
||||
|
Reference in New Issue
Block a user