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:
@ -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']]))
|
||||
{
|
||||
|
Reference in New Issue
Block a user