Audio files path
Installation and Configuration
Probably in the users directory within /data/media/
function jrCore_remove_unwanted_breaks($string)
{
if (strpos(' ' . $string, "<br>")) {
// fix ul
if (strpos(' ' . $string, "<ul")||strpos(' ' . $string, "<ul")) {
$_tmp = explode( "\n", $string);
if ($_tmp && is_array($_tmp)) {
foreach ($_tmp as $k => $line) {
if (strpos(' ' . $line, "><br>")) {
$_tmp[$k] = str_replace("><br>", '>', $line);
}
}
$string = implode("\n", $_tmp);
}
}