fix typo in safename (now matches (, was missing a \!

git-svn-id: http://www.observium.org/svn/observer/trunk@859 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2010-02-15 18:19:42 +00:00
parent 6326bb4011
commit 1a79148fd8

View File

@@ -76,7 +76,7 @@ function gethostosbyid($id) {
function safename($name)
{
return preg_replace('/[^a-zA-Z0-9,._\+\()\-]/', '_', $name);
return preg_replace('/[^a-zA-Z0-9,._\+\(\)\-]/', '_', $name);
}