forked from friendica/friendica-addons
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
760abc1593
BIN
adult_smile/icons/drunk.gif
Normal file
BIN
adult_smile/icons/drunk.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 648 B |
BIN
adult_smile/icons/sperm.gif
Normal file
BIN
adult_smile/icons/sperm.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
dwpost.tgz
BIN
dwpost.tgz
Binary file not shown.
BIN
facebook.tgz
BIN
facebook.tgz
Binary file not shown.
|
@ -1174,7 +1174,7 @@ function fb_consume_stream($uid,$j,$wall = false) {
|
||||||
|
|
||||||
if($entry->privacy && $entry->privacy->value !== 'EVERYONE') {
|
if($entry->privacy && $entry->privacy->value !== 'EVERYONE') {
|
||||||
$datarray['private'] = 1;
|
$datarray['private'] = 1;
|
||||||
$datarray['allow_cid'] = '<' . $uid . '>';
|
$datarray['allow_cid'] = '<' . $self[0]['id'] . '>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if(trim($datarray['body']) == '') {
|
if(trim($datarray['body']) == '') {
|
||||||
|
|
12
irc/irc.php
12
irc/irc.php
|
@ -6,6 +6,11 @@
|
||||||
* Author: tony baldwin <https://free-haven.org/profile/tony>
|
* Author: tony baldwin <https://free-haven.org/profile/tony>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* enable in admin->plugins
|
||||||
|
* you will then have "irc chatroom" listed at yoursite/apps
|
||||||
|
* and the app will run at yoursite/irc
|
||||||
|
* documentation at http://tonybaldwin.me/hax/doku.php?id=friendica:irc
|
||||||
|
*/
|
||||||
|
|
||||||
function irc_install() {
|
function irc_install() {
|
||||||
register_hook('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
|
register_hook('app_menu', 'addon/irc/irc.php', 'irc_app_menu');
|
||||||
|
@ -32,10 +37,13 @@ $baseurl = $a->get_baseurl() . '/addon/irc';
|
||||||
$o = '';
|
$o = '';
|
||||||
|
|
||||||
|
|
||||||
// add the chatroom frame and some html
|
/* add the chatroom frame and some html
|
||||||
|
* by altering the "channels=friendica" part of the URL, you can add/remove channels.
|
||||||
|
* At free-haven.org, I have "?channels=friendica,free-haven", for instance, to open #friendica and #free-haven
|
||||||
|
*/
|
||||||
$o .= <<< EOT
|
$o .= <<< EOT
|
||||||
<h2>IRC chat</h2>
|
<h2>IRC chat</h2>
|
||||||
<p><a href="http://tldp.org/HOWTO/IRC/beginners.html" target="_blank">a beginner's guid to using IRC.</a></p>
|
<p><a href="http://tldp.org/HOWTO/IRC/beginners.html" target="_blank">a beginner's guide to using IRC.</a></p>
|
||||||
<iframe src="http://webchat.freenode.net?channels=friendica" width="600" height="600"></iframe>
|
<iframe src="http://webchat.freenode.net?channels=friendica" width="600" height="600"></iframe>
|
||||||
EOT;
|
EOT;
|
||||||
|
|
||||||
|
|
BIN
ljpost.tgz
BIN
ljpost.tgz
Binary file not shown.
Loading…
Reference in a new issue