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:
@@ -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, ";
|
||||
|
||||
Reference in New Issue
Block a user