Revision 76c486e3
Von Sven Schöling vor etwa 15 Jahren hinzugefügt
SL/Projects.pm | ||
---|---|---|
39 | 39 |
use SL::DBUtils; |
40 | 40 |
use SL::CVar; |
41 | 41 |
|
42 |
use strict; |
|
43 |
|
|
42 | 44 |
my %project_id_column_prefixes = ("ar" => "global", |
43 | 45 |
"ap" => "global", |
44 | 46 |
"oe" => "global", |
... | ... | |
178 | 180 |
$params{active} = 1; |
179 | 181 |
} |
180 | 182 |
|
181 |
$query = qq|UPDATE project SET projectnumber = ?, description = ?, active = ? |
|
183 |
my $query = qq|UPDATE project SET projectnumber = ?, description = ?, active = ?
|
|
182 | 184 |
WHERE id = ?|; |
183 | 185 |
|
184 | 186 |
@values = ($params{projectnumber}, $params{description}, $params{active} ? 't' : 'f', conv_i($params{id})); |
Auch abrufbar als: Unified diff
Und wieder ein Schwung strict.