summaryrefslogtreecommitdiffstats
path: root/blog
diff options
context:
space:
mode:
Diffstat (limited to 'blog')
-rwxr-xr-xblog/blog.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/blog/blog.pl b/blog/blog.pl
index db9c4c9d..6b75bc15 100755
--- a/blog/blog.pl
+++ b/blog/blog.pl
@@ -322,6 +322,11 @@ $comment
$tmpl->process($fn, \%th) ||
print "<pre>template error: ". $tmpl->error();
$dbh->disconnect() if( $dbh );
+
+ untie %attr if( %attr );
+ untie %config if( %config );
+ untie %article if( %article );
+ undef $tmpl;
}
sub AddArticle($$$;$)