Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
<link rel="stylesheet" href="../style1.css" type="text/css" />
<link rel="stylesheet" href="/style1.css" type="text/css" />
In file plog-functions.php find this lines:
// sanitize filename by replacing international characters with underscores
function sanitize_filename($str)
{
// allow only alfanumeric characters, hyphen, [, ], dot and apostrophe in file names
// the rest will be replaced
return preg_replace("/[^\w|\.|'|\-|\[|\]]/","_",$str);
}
and replace this "_" with "-" .
// sanitize filename by replacing international characters with underscores
function sanitize_filename($str)
{
// allow only alfanumeric characters, hyphen, [, ], dot and apostrophe in file names
// the rest will be replaced
return preg_replace("/[^\w|\.|'|\-|\[|\]]/","-",$str);
}
return preg_replace("/[^\w|\.|'|\-|\[|\]]/","_",$str);
to a hyphen.1 to 6 of 6