Fix URIs in server and client

This commit is contained in:
Sebastian Meyer 2019-03-14 09:31:45 +01:00
parent 2b4508edf2
commit 732dcaf4c1
2 changed files with 2 additions and 2 deletions

View File

@ -6,6 +6,6 @@ $(document).ready(function () {
// Submit search form values to PHP script.
function eodSearch() {
$('#eodSearchSubmit').attr('disabled', 'disabled');
$.php('http://localhost/eod/server/search.php', $('form#eodSearchForm').serialize());
$.php('http://localhost/server/search.php', $('form#eodSearchForm').serialize());
return false;
}

View File

@ -1,7 +1,7 @@
<?php
// Set some variables.
$eodOpenSearch = 'http://search.books2ebooks.eu/Search/Results';
$eodOpenSearch = 'https://search.books2ebooks.eu/Search/Results';
// Include required jQuery library.
require_once ('lib/jQuery.php');