local-only is optional on public timeline
darcs-hash:20080822210307-84dde-c90f6e7953d11c5b12c7a084ac23e5578412932c.gz
This commit is contained in:
parent
14c9366aac
commit
a91cd75c17
|
@ -63,7 +63,9 @@ class PublicAction extends StreamAction {
|
||||||
|
|
||||||
# XXX: sub-optimal
|
# XXX: sub-optimal
|
||||||
|
|
||||||
|
if (common_config('public', 'localonly')) {
|
||||||
$notice->is_local = 1;
|
$notice->is_local = 1;
|
||||||
|
}
|
||||||
|
|
||||||
$notice->orderBy('created DESC, notice.id DESC');
|
$notice->orderBy('created DESC, notice.id DESC');
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,9 @@ class PublicrssAction extends Rss10Action {
|
||||||
|
|
||||||
# XXX: bad performance
|
# XXX: bad performance
|
||||||
|
|
||||||
|
if (common_config('public', 'localonly')) {
|
||||||
$notice->is_local = 1;
|
$notice->is_local = 1;
|
||||||
|
}
|
||||||
|
|
||||||
$notice->orderBy('created DESC, notice.id DESC');
|
$notice->orderBy('created DESC, notice.id DESC');
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,10 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
# XXX: sub-optimal performance
|
# XXX: sub-optimal performance
|
||||||
|
|
||||||
|
if (common_config('public', 'localonly')) {
|
||||||
$notice->is_local = 1;
|
$notice->is_local = 1;
|
||||||
|
}
|
||||||
|
|
||||||
$notice->orderBy('created DESC, notice.id DESC');
|
$notice->orderBy('created DESC, notice.id DESC');
|
||||||
$notice->limit($MAX_PUBSTATUSES);
|
$notice->limit($MAX_PUBSTATUSES);
|
||||||
$cnt = $notice->find();
|
$cnt = $notice->find();
|
||||||
|
|
|
@ -77,6 +77,8 @@ $config =
|
||||||
array('blacklist' => array()),
|
array('blacklist' => array()),
|
||||||
'avatar' =>
|
'avatar' =>
|
||||||
array('server' => NULL),
|
array('server' => NULL),
|
||||||
|
'public' =>
|
||||||
|
array('localonly' => true),
|
||||||
'theme' =>
|
'theme' =>
|
||||||
array('server' => NULL),
|
array('server' => NULL),
|
||||||
'xmpp' =>
|
'xmpp' =>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user