*/
public function buildMasterTemplateName () {
// Get short name and add suffix
- $masterTemplateName = $this->getAppShortName() . "_main";
+ $masterTemplateName = str_replace("-", "", $this->getAppShortName()) . "_main";
// Return it
return $masterTemplateName;
*/
public function buildMasterTemplateName () {
// Get short name and add suffix
- $masterTemplateName = $this->getAppShortName() . "_main";
+ $masterTemplateName = str_replace("-", "", $this->getAppShortName()) . "_main";
// Return it
return $masterTemplateName;