remove ancient irrelevant comments

This commit is contained in:
Shish 2022-05-20 13:06:29 +01:00
parent b859e1fc60
commit c9ce396c9d
5 changed files with 7 additions and 7 deletions

View file

@ -69,10 +69,10 @@ class Page extends BasePage
$left_block_html .= $block->get_html(true);
break;
case "user":
$user_block_html .= $block->body; // $this->block_to_html($block, true);
$user_block_html .= $block->body;
break;
case "subheading":
$sub_block_html .= $block->body; // $this->block_to_html($block, true);
$sub_block_html .= $block->body;
break;
case "main":
if ($block->header == "Posts") {

View file

@ -69,10 +69,10 @@ class Page extends BasePage
$left_block_html .= $block->get_html(true);
break;
case "user":
$user_block_html .= $block->body; // $this->block_to_html($block, true);
$user_block_html .= $block->body;
break;
case "subheading":
$sub_block_html .= $block->body; // $this->block_to_html($block, true);
$sub_block_html .= $block->body;
break;
case "main":
if ($block->header == "Posts") {

View file

@ -25,7 +25,7 @@ class Page extends BasePage
$main_block_html .= $block->get_html(false);
break;
case "subheading":
$sub_block_html .= $block->body; // $this->block_to_html($block, true);
$sub_block_html .= $block->body;
break;
default:
print "<p>error: {$block->header} using an unknown section ({$block->section})";

View file

@ -69,7 +69,7 @@ class Page extends BasePage
$main_block_html .= $this->get_html($block, "main", true, "");
break;
case "subheading":
// $sub_block_html .= $block->body; // $this->block_to_html($block, true);
// $sub_block_html .= $block->body;
$sub_block_html .= $this->get_html($block, "third", true, "nav-card");
break;
default:

View file

@ -28,7 +28,7 @@ class Page extends BasePage
$main_block_html .= $block->get_html(false);
break;
case "subheading":
$sub_block_html .= $block->body; // $this->block_to_html($block, true);
$sub_block_html .= $block->body;
break;
default:
print "<p>error: {$block->header} using an unknown section ({$block->section})";