Make "Active" projects the default instead of "Joined".

This commit is contained in:
2013-11-15 17:05:59 +01:00
parent ae2b0e63d6
commit dd6eefcd9c

View File

@@ -65,11 +65,12 @@ final class PhabricatorProjectSearchEngine
public function getBuiltinQueryNames() {
$names = array();
$names['active'] = pht('Active');
if ($this->requireViewer()->isLoggedIn()) {
$names['joined'] = pht('Joined');
}
$names['active'] = pht('Active');
$names['all'] = pht('All');
return $names;