Made changes to the compiler in relation to version control. Resolved gh-154 to insure string translation for state values. Added shortcuts in Joomla Component list view to all linked tables in their relationship with the Joomla Component
This commit is contained in:
@ -619,7 +619,7 @@ class Structure extends Get
|
||||
$config = array('###CREATIONDATE###' => $created, '###BUILDDATE###' => $modified,'###VERSION###' => $view['settings']->version);
|
||||
$this->buildDynamique($target,'single', false, $config);
|
||||
}
|
||||
if($view['edit_create_site_view'])
|
||||
if ( isset($view['edit_create_site_view']) && $view['edit_create_site_view'])
|
||||
{
|
||||
// setup the front site edit-view files
|
||||
$target = array('site' => $view['settings']->name_single);
|
||||
@ -628,7 +628,7 @@ class Structure extends Get
|
||||
}
|
||||
}
|
||||
// quick set of checkin once
|
||||
if ($view['checkin'] == 1 && !$this->addCheckin)
|
||||
if (isset($view['checkin']) && $view['checkin'] == 1 && !$this->addCheckin)
|
||||
{
|
||||
// switch to add checking to config
|
||||
$this->addCheckin = true;
|
||||
|
Reference in New Issue
Block a user