diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-10-16 14:06:03 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-10-16 14:06:03 +0800 |
commit | 230e45e1120bcb065dc5abca6bceb16ca1266b73 (patch) | |
tree | 60295455946a54b3667545263f2b7b1aa7f60873 | |
parent | ae825cd67e4b21efe93c8f6fee56e038a9dba61c (diff) | |
download | pttbbs-230e45e1120bcb065dc5abca6bceb16ca1266b73.tar pttbbs-230e45e1120bcb065dc5abca6bceb16ca1266b73.tar.gz pttbbs-230e45e1120bcb065dc5abca6bceb16ca1266b73.tar.bz2 pttbbs-230e45e1120bcb065dc5abca6bceb16ca1266b73.tar.lz pttbbs-230e45e1120bcb065dc5abca6bceb16ca1266b73.tar.xz pttbbs-230e45e1120bcb065dc5abca6bceb16ca1266b73.tar.zst pttbbs-230e45e1120bcb065dc5abca6bceb16ca1266b73.zip |
untie everything
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1250 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rwxr-xr-x | blog/blog.pl | 5 |
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($$$;$) |