BBCodeLexer::Internal_StripQuotes( $string )
Contents
Description Description
Source Source
File: includes/admin/parser.php
function Internal_StripQuotes($string) {
if (preg_match("/^\\\"(.*)\\\"$/", $string, $matches))
return $matches[1];
else if (preg_match("/^\\'(.*)\\'$/", $string, $matches))
return $matches[1];
else return $string;
}