aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornodiscc <nodiscc@gmail.com>2014-10-21 18:09:33 +0200
committernodiscc <nodiscc@gmail.com>2014-10-21 18:09:33 +0200
commit736feea58ea3ea08df8681cfc6a01914cf0c6331 (patch)
treee0b3f72754f64eff9043a8de9a578840050fe747
parentc4a329ede2d19d3a9431334176d9bebf35d6bb96 (diff)
parent27646ca5b41bdf09bd73c0e05c352379214b0011 (diff)
downloadShaarli-736feea58ea3ea08df8681cfc6a01914cf0c6331.tar.gz
Shaarli-736feea58ea3ea08df8681cfc6a01914cf0c6331.tar.zst
Shaarli-736feea58ea3ea08df8681cfc6a01914cf0c6331.zip
Merge pull request #30 from nodiscc/master
add link: in case of empty URL (self-post), prepend "Note: " to the title
-rw-r--r--index.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/index.php b/index.php
index 294600d0..01872f4d 100644
--- a/index.php
+++ b/index.php
@@ -1587,7 +1587,11 @@ function renderPage()
1587 } 1587 }
1588 } 1588 }
1589 } 1589 }
1590 if ($url=='') $url='?'.smallHash($linkdate); // In case of empty URL, this is just a text (with a link that point to itself) 1590 if ($url=='') // In case of empty URL, this is just a text (with a link that points to itself)
1591 {
1592 $url='?'.smallHash($linkdate);
1593 $title='Note: ';
1594 }
1591 $link = array('linkdate'=>$linkdate,'title'=>$title,'url'=>$url,'description'=>$description,'tags'=>$tags,'private'=>$private); 1595 $link = array('linkdate'=>$linkdate,'title'=>$title,'url'=>$url,'description'=>$description,'tags'=>$tags,'private'=>$private);
1592 } 1596 }
1593 1597