X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fhttp%2Fpages%2Fcreateidentitypage.cpp;h=f993a3981459c9c0ea35e783ba337b3e9b361d6f;hb=9b22dd53fe62e312c1647310b7ec43aa127090af;hp=c28fa64489a74ff62b8a764234b97acafe1090fd;hpb=4430e7762844c66428b6f822288beb71b7f82b95;p=fms.git diff --git a/src/http/pages/createidentitypage.cpp b/src/http/pages/createidentitypage.cpp index c28fa64..f993a39 100644 --- a/src/http/pages/createidentitypage.cpp +++ b/src/http/pages/createidentitypage.cpp @@ -12,7 +12,7 @@ const std::string CreateIdentityPage::GeneratePage(const std::string &method, co if(queryvars.find("formaction")!=queryvars.end() && (*queryvars.find("formaction")).second=="create") { - SQLite3DB::Statement st=m_db->Prepare("INSERT INTO tblLocalIdentity(Name,PublishTrustList,DateCreated) VALUES(?,'true',?);"); + SQLite3DB::Statement st=m_db->Prepare("INSERT INTO tblLocalIdentity(Name,PublishTrustList,DateCreated) VALUES(?,'false',?);"); std::string name=""; DateTime date; date.SetToGMTime(); @@ -33,7 +33,7 @@ const std::string CreateIdentityPage::GeneratePage(const std::string &method, co content+="

Create Identity

"; content+="
"; content+=""; - content+="Name : "; + content+="Name : "; content+=" "; content+="
"; }