Skip to content
Merged
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
1 change: 1 addition & 0 deletions pinc/pg.inc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ global $PG_home_url;
$PG_home_url = "https://www.gutenberg.org";
$PG_faq_url = "https://www.gutenberg.org/help/faq.html";
$PGLAF_upload_url = "https://upload.pglaf.org";
$PGLAF_inprogress_url = "https://inprogress.pglaf.org";

// -----------------------------------------------------------------------------

Expand Down
8 changes: 7 additions & 1 deletion tools/project_manager/external_catalog_search.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
include_once($relPath.'base.inc');
include_once($relPath.'theme.inc');
include_once($relPath.'MARCRecord.inc');

include_once($relPath.'pg.inc');

$title_attrs = [
// Bib-1 Use, Title (attribute 4)
Expand Down Expand Up @@ -99,6 +99,7 @@ function search_query_params(): string
function show_query_form()
{
global $search_params;
global $PGLAF_inprogress_url;

$title = _("Create a Project");
output_header($title);
Expand All @@ -124,6 +125,11 @@ function show_query_form()

echo "<p>";
echo _("Please put in as much information as possible to search for your project. The more information the better but if not accurate enough may rule out results.");
echo "</p><p>";
echo sprintf(
_("This catalog search does not check for duplicates. Before creating a project, <strong>please check for duplicates</strong> using <a href='%s'>PG's In Progress search</a>!"),
$PGLAF_inprogress_url
);
echo "</p>";

$url = "external_catalog_search.php?" . search_query_params();
Expand Down