forked from BioKIC/Symbiota
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Hotfix - 2023-07-22 - DwcArchivePublishing: Material Sample publishing bug - DwC-A upload: Scientific name failed to be built when taxonomic data is supplied by by individual components - Taxonomic autocomplete: Allow autocomplete handle apostrophes - Checklist Display: Bug fix that interfered with display of linked voucher images - Checklist Manager: Checklist taxon search autocomplete failed to include higher taxa (parent data) - Taxonomy Harvester bug: F-dex harvest failed to grab parents when source was not "Index Fungorum" - Specimen Upload: Set version data changes as the default action only when a collection is live managed - Occurrence Search Harvest: Reworked search form validation to be more efficient; Fix bug with occurrence attribute checkbox/radio failing to be recognized as a selected component * Hotfix 2023-06-19 (BioKIC#518) - Taxonomy Harvesting: Don't check following taxonomic resource on a positive match and input; synchronize display text - Refactor ImageLocalProcessor: -- Provide support for input file to include medium and thumbnail image derivatives -- Expand Image Map processing to allow mapping file to include any images table field name -- Expand images insert function to handle any valid field found within images table -- MD5 hash large version of image input file, but don't overwrite hash if supplied by source -- Handle BOM characters at start of csv file. -- Trim header elements for testing column names. -- Enforce default action of accepting derivative urls supplied within a csv image map file -- Make sure to remove staging images - Occurrence Public Display: Allow occurrence archive (deleted occurrences) to be searchable by GUID (occurrenceID, recordID), thus reporting when a record is deleted - Checklist multi-polygon Map: resolve Multipolygons failing to map within both simple and dynamic maps - Occurrence Reviewer: Fix for field name and start and end date filter variables failing to be carried forward when advancing to pages beyond 1000 records - Collection metadata editor: Reset contact array to ensure that JSON string is standardized as a non-associated array --------- Co-authored-by: Greg Post <[email protected]>
- Loading branch information
1 parent
deb6549
commit b3bccdb
Showing
15 changed files
with
80 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
include_once('../../config/symbini.php'); | ||
include_once($SERVER_ROOT.'/classes/ChecklistManager.php'); | ||
header("Content-Type: text/html; charset=".$CHARSET); | ||
header('Content-Type: text/html; charset='.$CHARSET); | ||
|
||
$clid = $_REQUEST['clid']; | ||
$term = $_REQUEST['term']; | ||
$deep = (isset($_REQUEST['deep'])?$_REQUEST['deep']:0); | ||
|
||
$clManager = new ChecklistManager(); | ||
$retArr = $clManager->getTaxonSearch($term,$clid,$deep); | ||
$retArr = $clManager->getTaxonSearch($term, $clid, $deep); | ||
echo json_encode($retArr); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.