summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-08-20 20:13:42 +0000
committeryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-08-20 20:13:42 +0000
commit5d04638c123a8d2e34c4c56d3e90ecd6e6749117 (patch)
treeac29a672ddc22d0b890f97a83b1b8d9a727ac2ca
parentd4368e6342088e8d244cd82dcecce94e74f18299 (diff)
Fixed two other boolean inputs, and if we're going to write subroutines with only one-character variable names, we've got to do it right, don't we? ^^
git-svn-id: svn://vndb.org/vndb@102 1fe2e327-d9db-4752-bcf7-ef0cb4a1748b
-rw-r--r--lib/VNDB/Util/DB.pm19
1 files changed, 10 insertions, 9 deletions
diff --git a/lib/VNDB/Util/DB.pm b/lib/VNDB/Util/DB.pm
index 17ec18af..2f9ae9f2 100644
--- a/lib/VNDB/Util/DB.pm
+++ b/lib/VNDB/Util/DB.pm
@@ -233,7 +233,7 @@ sub DBLockItem { # table, id, locked
UPDATE !s
SET locked = ?
WHERE id = ?|,
- $tbl, $l, $id);
+ $tbl, $l?1:0, $id);
}
@@ -904,6 +904,7 @@ sub DBEditVN { # id, %options->( comm + _insert_vn_rev + uid + causedby }
sub _insert_vn_rev { # columns in vn_rev + categories + screenshots + relations
my($s, $cid, $vid, $o) = @_;
+ $$o{img_nsfw} = $$o{img_nsfw}?1:0;
$s->DBExec(q|
INSERT INTO vn_rev (id, vid, title, "desc", alias, image, img_nsfw, length, l_wp, l_encubed, l_renai, l_vnn)
VALUES (!l)|,
@@ -1543,29 +1544,29 @@ sub sqlhelper { # type, query, @list
# Indeed, this also means you can't use PgSQL operators containing a question mark
sub sqlprint { # start, query, bind values. Returns new query + bind values
- my @arg;
+ my @a;
my $q='';
my $s = shift;
for my $p (split /(\?|![lHWs])/, shift) {
next if !defined $p;
if($p eq '?') {
- push @arg, shift;
- $q .= '$'.(@arg+$s);
+ push @a, shift;
+ $q .= '$'.(@a+$s);
} elsif($p eq '!s') {
$q .= shift;
} elsif($p eq '!l') {
my $l = shift;
- $q .= join ', ', map '$'.(@arg+$s+$_+1), 0..$#$l;
- push @arg, @$l;
+ $q .= join ', ', map '$'.(@a+$s+$_+1), 0..$#$l;
+ push @a, @$l;
} elsif($p eq '!H' || $p eq '!W') {
my $h=shift;
my @h=ref $h eq 'HASH' ? %$h : @$h;
my @r;
while(my($k,$v) = (shift(@h), shift(@h))) {
last if !defined $k;
- my($n,@l) = sqlprint($#arg+1, $k, ref $v eq 'ARRAY' ? @$v : $v);
+ my($n,@l) = sqlprint($#a+1, $k, ref $v eq 'ARRAY' ? @$v : $v);
push @r, $n;
- push @arg, @l;
+ push @a, @l;
}
$q .= ($p eq '!W' ? 'WHERE ' : 'SET ').join $p eq '!W' ? ' AND ' : ', ', @r
if @r;
@@ -1573,7 +1574,7 @@ sub sqlprint { # start, query, bind values. Returns new query + bind values
$q .= $p;
}
}
- return($q, @arg);
+ return($q, @a);
}
1;