From: Steve Sutton Date: Tue, 16 Feb 2016 19:51:56 +0000 (-0500) Subject: Had to change how headers are called in the interior pages. X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=b8c91cf751930acd481c562eef9aab83d1a3c92a;p=WP-Plugins%2Fglm-wp-importer.git Had to change how headers are called in the interior pages. --- diff --git a/controllers/ToolboxImport.php b/controllers/ToolboxImport.php index b208169..6fa2f7e 100644 --- a/controllers/ToolboxImport.php +++ b/controllers/ToolboxImport.php @@ -457,7 +457,7 @@ switch ($iterator) { case 1: if (isset($paragraph['title']) && $paragraph['title']) { - $page['pageContent'] .= '

'.$paragraph['title'].'

'; + $page['pageContent'] .= '

'.$paragraph['title'].'

'; } if (isset($paragraph['image']) && $paragraph['image']) { //$page['images'][] = $paragraph['image']; @@ -466,10 +466,10 @@ break; case 2: if (isset($paragraph['name']) && $paragraph['name']) { - $page['pageContent'] .= '

'.$paragraph['name'].'

'; + $page['pageContent'] .= '

'.$paragraph['name'].'

'; } if (isset($paragraph['title']) && $paragraph['title']) { - $page['pageContent'] .= '

'.$paragraph['title'].'

'; + $page['pageContent'] .= '

'.$paragraph['title'].'

'; } if (isset($paragraph['image']) && $paragraph['image']) { //$page['images'][] = $paragraph['image']; @@ -478,10 +478,10 @@ break; default: if (isset($paragraph['name']) && $paragraph['name']) { - $page['pageContent'] .= '

'.$paragraph['name'].'

'; + $page['pageContent'] .= '

'.$paragraph['name'].'

'; } if (isset($paragraph['title']) && $paragraph['title']) { - $page['pageContent'] .= '

'.$paragraph['title'].'

'; + $page['pageContent'] .= '

'.$paragraph['title'].'

'; } if (isset($paragraph['template']) && $alternateImg && $page['template'] == 2) { $align = ($iterator%2 == 0) ? 'left' : 'right';