Bug fix
* NpgsqlCircleProvider.cs: * yavsc.circles.js: Restores circles edition
This commit is contained in:
parent
b8446c2d3e
commit
0b1b8f9a81
4 changed files with 13 additions and 12 deletions
4
NpgsqlContentProvider/ChangeLog
Normal file
4
NpgsqlContentProvider/ChangeLog
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
2015-10-28 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlCircleProvider.cs: Restores circles edition
|
||||
|
||||
|
|
@ -256,7 +256,7 @@ namespace WorkFlowProvider
|
|||
}
|
||||
using (NpgsqlCommand cmd = cnx.CreateCommand ()) {
|
||||
cmd.CommandText = "insert into circle_members (circle_id,member) values (@cid,@mbr)";
|
||||
cmd.Parameters.AddWithValue ("cid", NpgsqlDbType.Varchar , id);
|
||||
cmd.Parameters.AddWithValue ("cid", NpgsqlDbType.Bigint , id);
|
||||
cmd.Parameters.Add ("mbr", NpgsqlDbType.Varchar);
|
||||
cmd.Prepare ();
|
||||
if (users != null)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue