shlist

share and manage lists between multiple people
Log | Files | Refs

commit ee79106e0a214439786d4db3fe4df79653f22ea8
parent 4890b7f6da11d7c56a327b764c37715904e6a6ca
Author: Kyle Milz <kyle@0x30.net>
Date:   Tue, 26 Jan 2016 22:36:59 -0700

sl: throw some quotes around a list num

Diffstat:
Mserver/sl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/sl b/server/sl @@ -286,7 +286,7 @@ sub msg_list_update { # Update list row, note that some values here can be optional $db->{update_list}->execute($list->{name}, $list->{date}, time, $list->{num}); - $log->print("num = $list->{num}\n"); + $log->print("num = '$list->{num}'\n"); $log->print("name = '$list->{name}'\n") if (exists $list->{name}); $log->print("date = $list->{date}\n") if (exists $list->{date});