- Droped not used packages from composer.json

- Fixed packages version in composer.json
- Renewed file composer.lock
- Checked & Fixed imports paths
- Moved /vendor/FHC-Vendor to /FHC-Vendor
This commit is contained in:
Paolo
2020-01-15 18:08:29 +01:00
parent 908d63f07e
commit 4e43d37780
816 changed files with 212 additions and 906 deletions
+2 -2
View File
@@ -107,7 +107,7 @@ class PhrasesLib
// If no <p> tags required
if ($blockTags == 'no')
{
$tmpText = $textileParser->textileThis($result->retval[$i]->text); // Parse
$tmpText = $textileParser->parse($result->retval[$i]->text); // Parse
// Removes tags <p> and </p> from the beginning and from the end of the string if they are present
// NOTE: Those tags are usually, but not always, added by the textile parser
@@ -127,7 +127,7 @@ class PhrasesLib
}
else
{
$result->retval[$i]->text = $textileParser->textileThis($result->retval[$i]->text);
$result->retval[$i]->text = $textileParser->parse($result->retval[$i]->text);
}
}
}