Cleanup.
authorfredrik <fredrik@959494ce-11ee-0310-bf91-de5d638817bd>
Sun, 2 Oct 2005 23:25:19 +0000 (23:25 +0000)
committerfredrik <fredrik@959494ce-11ee-0310-bf91-de5d638817bd>
Sun, 2 Oct 2005 23:25:19 +0000 (23:25 +0000)
git-svn-id: svn+ssh://svn.dolda2000.com/srv/svn/repos/src/utils@350 959494ce-11ee-0310-bf91-de5d638817bd

ANN.pm

diff --git a/ANN.pm b/ANN.pm
index aefd04e..ce85378 100644 (file)
--- a/ANN.pm
+++ b/ANN.pm
@@ -122,7 +122,7 @@ sub getthemes
 
 sub getseries
 {
-    my($id, $buf, $html, %ret, @cp);
+    my($id, $buf, $html, %ret);
     ($id) = @_;
     
     if(!($html = _get geturl $id)) {
@@ -143,8 +143,7 @@ sub getseries
        $ret{"eps"} = $buf;
     }
     if(($buf) = ($html =~ /genres:<\/b>\n([^<]+)</is)) {
-       @cp = split /,\s*/, $buf;
-       $ret{"gnr"} = \@cp;
+       $ret{"gnr"} = [split /, /, $buf];
     }
     $buf = getthemes $html, "opening";
     $ret{"op"} = $buf if(@{$buf});