Renamed the uikit lib folders. Resolved the gh-188 by updateing the note. Resolved gh-92 by implementation of the library manager in the compiler.

This commit is contained in:
2017-12-10 21:17:26 +02:00
parent b60d208d9e
commit f900f65baa
700 changed files with 12837 additions and 14154 deletions

View File

@ -122,12 +122,6 @@ class ComponentbuilderModelLibrary extends JModelAdmin
$item->php_setdocument = base64_decode($item->php_setdocument);
}
if (!empty($item->php_preparedocument))
{
// base64 Decode php_preparedocument.
$item->php_preparedocument = base64_decode($item->php_preparedocument);
}
if (empty($item->id))
{
@ -966,12 +960,6 @@ class ComponentbuilderModelLibrary extends JModelAdmin
$data['php_setdocument'] = base64_encode($data['php_setdocument']);
}
// Set the php_preparedocument string to base64 string.
if (isset($data['php_preparedocument']))
{
$data['php_preparedocument'] = base64_encode($data['php_preparedocument']);
}
// insure the locked library names are not changed
if ($data['id'] > 0 && isset(ComponentbuilderHelper::$libraryNames[$data['id']]))
{