Skip to content

Commit

Permalink
Merge pull request #40 from BioKIC/master
Browse files Browse the repository at this point in the history
Pull master into KDP_dev
  • Loading branch information
themerekat authored Jul 23, 2021
2 parents ac62dca + eca7be1 commit 4b394f0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion classes/ChecklistManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public function getTaxaList($pageNumber = 1,$retLimit = 500){
$taxonTokens = $newArr;
}
if(!$retLimit || ($this->taxaCount >= (($pageNumber-1)*$retLimit) && $this->taxaCount <= ($pageNumber)*$retLimit)){
if($row->morphospecies) $sciName .= ' '.$row->morphospecies;
if(isset($row->morphospecies) && $row->morphospecies) $sciName .= ' '.$row->morphospecies;
elseif($row->rankid == 180) $sciName .= " sp.";
if($row->rankid > 220 && $this->clMetadata['type'] != 'rarespp' && !array_key_exists($row->parenttid, $this->taxaList)){
$this->taxaList[$row->parenttid]['taxongroup'] = '<i>'.$taxonGroup.'</i>';
Expand Down
2 changes: 1 addition & 1 deletion collections/harvestparams.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
</div>
</div>
<div style='float:right;margin:0px 10px;'>
<div><button type="submit" style="width:100%"><?php echo isset($LANG['BUTTON_NEXT_LIST']?$LANG['BUTTON_NEXT_LIST']:'List Display'); ?></button></div>
<div><button type="submit" style="width:100%"><?php echo isset($LANG['BUTTON_NEXT_LIST'])?$LANG['BUTTON_NEXT_LIST']:'List Display'; ?></button></div>
<div><button type="button" style="width:100%" onclick="displayTableView(this.form)"><?php echo isset($LANG['BUTTON_NEXT_TABLE'])?$LANG['BUTTON_NEXT_TABLE']:'Table Display'; ?></button></div>
<div><button type="reset" style="width:100%" onclick="resetHarvestParamsForm()"><?php echo isset($LANG['BUTTON_RESET'])?$LANG['BUTTON_RESET']:'Reset Form'; ?></button></div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion games/flashcards.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function tellMe(){
echo $checklists_flashcardsCrumbs;
}
else{
echo '<a href="../checklists/checklist.php?clid='.$clid.'">';
echo '<a href="../checklists/checklist.php?clid='.$clid.'&dynclid='.$dynClid.'">';
echo $fcManager->getClName();
echo '</a> &gt;&gt; ';
}
Expand Down
2 changes: 1 addition & 1 deletion games/namegame.php
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ function wildCard(){
echo $games_namegameCrumbs;
}
else{
echo '<a href="../checklists/checklist.php?clid='.$clid.'">';
echo '<a href="../checklists/checklist.php?clid='.$clid.'&dynclid='.$dynClid.'">';
echo $clName;
echo '</a> &gt;&gt; ';
}
Expand Down

0 comments on commit 4b394f0

Please sign in to comment.