Skip to content

Commit 58a15c5

Browse files
Fixed end of page
1 parent 6e2477a commit 58a15c5

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 2.0.1 - 2019-08-01
8+
### Fixed
9+
- Fixed end of page
10+
711
## 2.0.0 - 2019-07-28
812
### Added
913
- Navigation to version

Taskodrome/Taskodrome.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function register()
1111
$this->description = plugin_lang_get("description");
1212
$this->page = 'config_page';
1313

14-
$this->version = "2.0.0";
14+
$this->version = "2.0.1";
1515
$this->requires = array(
1616
"MantisCore" => "2.0.0",
1717
);

Taskodrome/pages/main.php

+21-1
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,26 @@ function is_user_hidden( $username, $project_id )
316316
}
317317

318318
write_bug_rows( $rows );
319-
// layout_page_end();
320319

320+
function taskodrome_layout_page_end()
321+
{
322+
if( !db_is_connected() ) {
323+
return;
324+
}
325+
326+
event_signal( 'EVENT_LAYOUT_CONTENT_END' );
327+
328+
echo '</div>' , "\n";
329+
330+
layout_page_content_end();
331+
layout_main_content_end();
332+
333+
layout_main_container_end();
334+
layout_body_javascript();
335+
336+
html_body_end();
337+
html_end();
338+
}
339+
340+
taskodrome_layout_page_end();
321341
?>

0 commit comments

Comments
 (0)