diff options
Diffstat (limited to 'blog')
-rwxr-xr-x | blog/builddb.pl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/blog/builddb.pl b/blog/builddb.pl index 1be4c25a..49d2562e 100755 --- a/blog/builddb.pl +++ b/blog/builddb.pl @@ -115,8 +115,7 @@ sub builddata($$$$$$) # ugly code for making short my @c = split("\n", $dat{"$currid.content"} = $rbh->{"$_.content"}); - $dat{"$currid.short"} = ("$c[0]\n$c[1]\n$c[2]\n". - $c[3] ? '....' : ''); + $dat{"$currid.short"} = ("$c[0]\n$c[1]\n$c[2]\n$c[3]\n"); if( !$contentonly ){ print "\tbuilding $currid linking... "; @@ -145,7 +144,6 @@ sub builddata($$$$$$) } } } - print Dumper(\%dat); untie %dat; } |