Fix URIs in server and client
This commit is contained in:
parent
2b4508edf2
commit
732dcaf4c1
|
@ -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;
|
||||
}
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue