mirror of https://github.com/itflow-org/itflow
Certificates - perms and model
Move certificates to the new permissions system Deduplicate add/edit using a model
This commit is contained in:
parent
4e9afd3e6b
commit
4a625183fb
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
$name = sanitizeInput($_POST['name']);
|
||||
$description = sanitizeInput($_POST['description']);
|
||||
$domain = sanitizeInput($_POST['domain']);
|
||||
$issued_by = sanitizeInput($_POST['issued_by']);
|
||||
$expire = sanitizeInput($_POST['expire']);
|
||||
$public_key = sanitizeInput($_POST['public_key']);
|
||||
$notes = sanitizeInput($_POST['notes']);
|
||||
$domain_id = intval($_POST['domain_id']);
|
||||
$client_id = intval($_POST['client_id']);
|
||||
Loading…
Reference in New Issue