From 3f8cf5f0da75fa8312c173e9e2c1e1e843811091 Mon Sep 17 00:00:00 2001 From: artem Date: Fri, 20 Jun 2008 08:42:25 +0000 Subject: - [DEV-137] changes in users profile system (Artem) git-svn-id: svn://svn.zabbix.com/trunk@5782 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/httptest.inc.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'frontends/php/include/httptest.inc.php') diff --git a/frontends/php/include/httptest.inc.php b/frontends/php/include/httptest.inc.php index a0282034..57855b65 100644 --- a/frontends/php/include/httptest.inc.php +++ b/frontends/php/include/httptest.inc.php @@ -45,16 +45,13 @@ return $status; } - function db_save_step($hostid, $applicationid, $httptestid, $testname, $name, $no, $timeout, $url, $posts, $required, $status_codes, $delay, $history, $trends) - { - if( $no <= 0 ) - { + function db_save_step($hostid, $applicationid, $httptestid, $testname, $name, $no, $timeout, $url, $posts, $required, $status_codes, $delay, $history, $trends){ + if( $no <= 0 ){ error('Scenario step number can\'t be less then 1'); return false; } - if (!eregi('^([0-9a-zA-Z\_\.[.-.]\$ ]+)$', $name)) - { + if (!eregi('^([0-9a-zA-Z\_\.[.-.]\$ ]+)$', $name)) { error("Scenario step name should contain '0-9a-zA-Z_ .$'- characters only"); return false; } -- cgit