Theme: Integrate settings to customize the style of edit form tables (label, field, heading and row cells).

Editor: Prevent / (slashes) in clip name.
Dialplan Editor: Code cleanup, and minor adjustments for theme compatibility.
Functions: Add option to check_str() to skip string trim.
This commit is contained in:
reliberate
2016-04-07 12:00:19 -06:00
parent 87adfbae24
commit 75ec879ff9
6 changed files with 250 additions and 95 deletions
+5
View File
@@ -48,6 +48,11 @@ if (count($_POST)>0) {
$clip_order = check_str($_POST["clip_order"]);
if (strlen($clip_order) == 0) { $clip_order = 0; }
//no slashes
$clip_name = str_replace('/', '|', $clip_name);
$clip_name = str_replace('\\', '|', $clip_name);
//sql insert
$sql = "insert into v_clips ";
$sql .= "(";
$sql .= "clip_uuid, ";