X-Git-Url: https://git.pterodactylus.net/?p=fms.git;a=blobdiff_plain;f=admin%2Fcreateidentity.php;h=804b4cf9d29d0d6ae01257a3e17dc05a3acc62d0;hp=b3b76f70421fb70e6c7663797e98878f78eb5838;hb=6b896a9e1dc143bba86795be1e9336549db9b85f;hpb=8adfd604a97d385869b0ce763b35d014d7aa2cca diff --git a/admin/createidentity.php b/admin/createidentity.php index b3b76f7..804b4cf 100644 --- a/admin/createidentity.php +++ b/admin/createidentity.php @@ -11,7 +11,7 @@ function content() if(isset($_REQUEST["formaction"]) && $_REQUEST["formaction"]=="create" && $_REQUEST["name"]!="") { $db=new PDO('sqlite:'.$dblocation); - $st=$db->prepare("INSERT INTO tblLocalIdentity(Name) VALUES(?);"); + $st=$db->prepare("INSERT INTO tblLocalIdentity(Name,PublishTrustList) VALUES(?,'true');"); $st->bindParam(1,$_REQUEST["name"]); $st->execute(); ?>