Fix broken references
authorJoey Schulze <joey@infodrom.org>
Thu, 12 Jul 2001 23:07:49 +0000 (23:07 +0000)
committerJoey Schulze <joey@infodrom.org>
Thu, 12 Jul 2001 23:07:49 +0000 (23:07 +0000)
src/LinuxTag/2001/ltp

index 757ff86..661e9bd 100755 (executable)
@@ -650,12 +650,12 @@ sub latex_workshops
     if ($sth && ($rc = $sth->execute) > 0) {
         while (@row = $sth->fetchrow_array) {
            $row[1] =~ /(\d+-\d+-\d+) (\d+:\d+):.*/;
-           $row[2] =~ s/#/\#/g;
-           $row[2] =~ s/&/\&/g;
-           $row[3] =~ s/#/\#/g;
-           $row[3] =~ s/&/\&/g;
            $date = $1;
            $time = $2;
+           $row[2] =~ s/#/\\#/g;
+           $row[2] =~ s/&/\\&/g;
+           $row[3] =~ s/#/\\#/g;
+           $row[3] =~ s/&/\\&/g;
            $schedule{$date}{$row[0]}{$time}{talk} = $row[2];
            $schedule{$date}{$row[0]}{$time}{speaker} = $row[3];
        }