Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Scrum/Scrum.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function register()

$this->version = "0.3";
$this->requires = array(
"MantisCore" => "1.2.6",
"MantisCore" => "1.2.6, <1.3.99",
);
$this->uses = array(
"Source" => "0.16",
Expand Down
4 changes: 2 additions & 2 deletions Scrum/pages/board.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copyright (c) 2011 John Reese
# Licensed under the MIT license

require_once( 'icon_api.php' );
require_api( 'icon_api.php' );

$current_project = helper_get_current_project();
$project_ids = current_user_get_all_accessible_subprojects( $current_project );
Expand Down Expand Up @@ -246,7 +246,7 @@
<option value=""><?php echo plugin_lang_get( 'all' ) ?></option>
<?php foreach( array_keys( $categories ) as $category_name ): ?>
<option value="<?php echo $category_name ?>" <?php
check_selected( $category, $category_name ); ?>>
check_selected( empty($category) ? "" : $category, $category_name ); ?>>
<?php echo $category_name ?>
</option>
<?php endforeach ?>
Expand Down