From 6621de63d99b65cc748992f84f8145a93adcce57 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Mon, 9 Jul 2012 19:07:33 +0100 Subject: [PATCH 1/3] Better (well, different) reshares. --- mod/share.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/mod/share.php b/mod/share.php index 761220ad7f..4ec27d6bf4 100644 --- a/mod/share.php +++ b/mod/share.php @@ -22,11 +22,12 @@ function share_init(&$a) { $o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n"; if($r[0]['title']) - $o .= '[b]' . $r[0]['title'] . '[/b]' . "\n"; - $o .= $r[0]['body'] . "\n" ; + $o .= '[b]' . ' [url=' . $r[0]['plink'] . ']' . $r[0]['title'] . '[/url]' . '[/b]' . "\n"; + else + $o .= '[b]' . ' [url=' . $r[0]['plink'] . ']' . 'View Source' . '[/url]' . '[/b]' . "\n"; + $o .= $r[0]['body'] . "\n"; + + echo $o; - $o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : ''); - - echo $o; killme(); -} +} \ No newline at end of file From 190ab46e18ec161a161fbeef01f412ae093b283f Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 4 Nov 2012 19:58:59 +0000 Subject: [PATCH 2/3] Only show "Welcome to $Sitename" if you haven't made your own homepage. --- mod/home.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/home.php b/mod/home.php index 6ed36b7638..76318b157c 100644 --- a/mod/home.php +++ b/mod/home.php @@ -25,9 +25,10 @@ function home_content(&$a) { if(x($_SESSION,'mobile-theme')) unset($_SESSION['mobile-theme']); - $o .= '

' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '

'; if(file_exists('home.html')) $o .= file_get_contents('home.html'); + else $o .= '

' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '

'; + $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); From 973efa0c7537a74f50d3d942f25682ef254328dd Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 4 Nov 2012 20:02:41 +0000 Subject: [PATCH 3/3] Oops, re-kill the dead snake. --- mod/share.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/mod/share.php b/mod/share.php index 4ec27d6bf4..761220ad7f 100644 --- a/mod/share.php +++ b/mod/share.php @@ -22,12 +22,11 @@ function share_init(&$a) { $o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n"; if($r[0]['title']) - $o .= '[b]' . ' [url=' . $r[0]['plink'] . ']' . $r[0]['title'] . '[/url]' . '[/b]' . "\n"; - else - $o .= '[b]' . ' [url=' . $r[0]['plink'] . ']' . 'View Source' . '[/url]' . '[/b]' . "\n"; - $o .= $r[0]['body'] . "\n"; - - echo $o; + $o .= '[b]' . $r[0]['title'] . '[/b]' . "\n"; + $o .= $r[0]['body'] . "\n" ; + $o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : ''); + + echo $o; killme(); -} \ No newline at end of file +}