aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-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