[vhffs-dev] [531] Removed an unvisible character which prevented create_pot to run correctly ... |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 531
Author: beuss
Date: 2007-03-27 17:01:58 +0000 (Tue, 27 Mar 2007)
Log Message:
-----------
Removed an unvisible character which prevented create_pot to run correctly...
Modified Paths:
--------------
branches/vhffs_4.1/vhffs-compat/updatedb.pl
Modified: branches/vhffs_4.1/vhffs-compat/updatedb.pl
===================================================================
--- branches/vhffs_4.1/vhffs-compat/updatedb.pl 2007-03-25 17:28:38 UTC (rev 530)
+++ branches/vhffs_4.1/vhffs-compat/updatedb.pl 2007-03-27 17:01:58 UTC (rev 531)
@@ -219,7 +219,7 @@
$sth = $dbh->prepare('UPDATE vhffs_history SET message = ? WHERE history_id = ?');
foreach(@$rows) {
$_->[1] =~ s/\\([^\\])/$1/g;
- $sth->execute($_->[1], $_->[0]) or warn "Unable to update history #$_->[0] (message : $_->[1])\n";
+ $sth->execute($_->[1], $_->[0]) or warn "Unable to update history #$_->[0] (message: $_->[1])\n";
}
print " done.\n";