forked from GNUsocial/gnu-social
Merge branch 'master' of gitorious.org:statusnet/mainline
This commit is contained in:
commit
e2914189f3
@ -127,9 +127,6 @@ class Notice extends Managed_DataObject
|
|||||||
'notice_created_idx' => array('created'),
|
'notice_created_idx' => array('created'),
|
||||||
'notice_replyto_idx' => array('reply_to'),
|
'notice_replyto_idx' => array('reply_to'),
|
||||||
'notice_repeatof_idx' => array('repeat_of'),
|
'notice_repeatof_idx' => array('repeat_of'),
|
||||||
),
|
|
||||||
'fulltext indexes' => array(
|
|
||||||
'content' => array('content'),
|
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -72,10 +72,7 @@ class Profile extends Managed_DataObject
|
|||||||
'primary key' => array('id'),
|
'primary key' => array('id'),
|
||||||
'indexes' => array(
|
'indexes' => array(
|
||||||
'profile_nickname_idx' => array('nickname'),
|
'profile_nickname_idx' => array('nickname'),
|
||||||
),
|
)
|
||||||
'fulltext indexes' => array(
|
|
||||||
'nickname' => array('nickname', 'fullname', 'location', 'bio', 'homepage')
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -115,21 +115,20 @@ class DirectoryPlugin extends Plugin
|
|||||||
{
|
{
|
||||||
|
|
||||||
$m->connect(
|
$m->connect(
|
||||||
'directory/users',
|
'directory/users/:filter',
|
||||||
array('action' => 'userdirectory'),
|
array('action' => 'userdirectory'),
|
||||||
array('filter' => 'all')
|
array('filter' => '[0-9a-zA-Z]|(0-9)')
|
||||||
);
|
);
|
||||||
|
|
||||||
$m->connect(
|
$m->connect(
|
||||||
'directory/users/:filter',
|
'directory/users',
|
||||||
array('action' => 'userdirectory'),
|
array('action' => 'userdirectory')
|
||||||
array('filter' => '([0-9a-zA-Z_]{1,64}|0-9)')
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$m->connect(
|
$m->connect(
|
||||||
'groups/:filter',
|
'groups/:filter',
|
||||||
array('action' => 'groupdirectory'),
|
array('action' => 'groupdirectory'),
|
||||||
array('filter' => '([0-9a-zA-Z_]{1,64}|0-9)')
|
array('filter' => '[0-9a-zA-Z]|(0-9)')
|
||||||
);
|
);
|
||||||
|
|
||||||
$m->connect(
|
$m->connect(
|
||||||
|
Loading…
Reference in New Issue
Block a user