Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/main/8845 general fixes #1380

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions classes/components/listPanels/CatalogListPanel.php
Expand Up @@ -30,9 +30,6 @@ class CatalogListPanel extends \PKP\components\listPanels\ListPanel
/** @var int Number of items to show at one time */
public $count = 30;

/** @var array Query parameters to pass if this list executes GET requests */
public $getParams = [];

/** @var int Count of total items available for list */
public $itemsMax = 0;

Expand Down
29 changes: 0 additions & 29 deletions classes/spotlight/SpotlightDAO.php
Expand Up @@ -201,35 +201,6 @@ public function deleteById($spotlightId)
$this->update('DELETE FROM spotlights WHERE spotlight_id = ?', [(int) $spotlightId]);
}

/**
* Delete spotlights by spotlight type ID.
*
* @param int $typeId
*
* @return bool
*/
public function deleteByTypeId($typeId)
{
$spotlights = $this->getByTypeId($typeId);
while (($spotlight = $spotlights->next())) {
$this->deleteObject($spotlight);
}
}

/**
* Delete spotlights by Assoc ID
*
* @param int $assocType
* @param int $assocId
*/
public function deleteByAssoc($assocType, $assocId)
{
$spotlights = $this->getByAssocId($assocType, $assocId);
while ($spotlight = $spotlights->next()) {
$this->deleteById($spotlight->getId());
}
}

/**
* Retrieve an array of spotlights matching a press id.
*
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion lib/pkp
Submodule pkp updated 49 files
+1 −2 api/v1/_dois/PKPBackendDoiHandler.php
+2 −2 api/v1/dois/PKPDoiHandler.php
+3 −0 classes/components/forms/FieldAutosuggestPreset.php
+0 −2 classes/components/forms/FieldPreparedContent.php
+0 −3 classes/components/forms/FieldRichTextarea.php
+3 −0 classes/components/listPanels/ListPanel.php
+1 −4 classes/components/listPanels/PKPAnnouncementsListPanel.php
+0 −3 classes/components/listPanels/PKPDoiListPanel.php
+0 −3 classes/components/listPanels/PKPInstitutionsListPanel.php
+0 −3 classes/components/listPanels/PKPSelectReviewerListPanel.php
+7 −3 classes/components/listPanels/PKPSubmissionsListPanel.php
+12 −0 classes/controllers/grid/GridColumn.php
+9 −0 classes/controllers/grid/GridRow.php
+2 −2 classes/controllers/grid/users/reviewer/PKPReviewerGridHandler.php
+8 −0 classes/core/EntityDAO.php
+0 −2 classes/core/PKPPageRouter.php
+2 −0 classes/core/PKPRouter.php
+3 −0 classes/form/validation/FormValidatorCustom.php
+3 −0 classes/linkAction/request/Modal.php
+3 −0 classes/metadata/MetadataDataObjectAdapter.php
+4 −0 classes/migration/upgrade/v3_4_0/I7191_EditorAssignments.php
+25 −82 classes/migration/upgrade/v3_4_0/MergeLocalesMigration.php
+18 −24 classes/migration/upgrade/v3_4_0/PreflightCheckMigration.php
+11 −0 classes/oai/PKPOAIDAO.php
+1 −1 classes/payment/Payment.php
+7 −0 classes/plugins/ImportExportPlugin.php
+10 −1 classes/plugins/PaymethodPlugin.php
+12 −0 classes/plugins/importexport/PKPImportExportFilter.php
+30 −0 classes/publication/PKPPublication.php
+12 −0 classes/security/authorization/PolicySet.php
+3 −0 classes/services/queryBuilders/PKPContextQueryBuilder.php
+3 −0 classes/xml/XMLParserDOMHandler.php
+3 −0 controllers/grid/eventLog/SubmissionFileEventLogGridHandler.php
+3 −0 controllers/grid/files/FileDateGridColumn.php
+3 −0 controllers/grid/files/proof/form/ManageProofFilesForm.php
+1 −0 controllers/grid/queries/QueriesGridRow.php
+1 −1 locale/en/api.po
+1 −1 pages/management/ManagementHandler.php
+27 −0 plugins/importexport/native/PKPNativeImportExportPlugin.php
+10 −0 plugins/importexport/native/filter/PKPPublicationNativeXmlFilter.php
+9 −5 schemas/decision.json
+8 −6 schemas/doi.json
+1 −0 schemas/emailTemplate.json
+7 −2 schemas/institution.json
+3 −1 schemas/publication.json
+10 −5 schemas/submission.json
+2 −0 tests/classes/publication/PublicationTest.php
+1 −0 tests/classes/security/authorization/PolicyTestCase.php
+122 −6 tools/buildSwagger.php