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.
|
// Submit search form values to PHP script.
|
||||||
function eodSearch() {
|
function eodSearch() {
|
||||||
$('#eodSearchSubmit').attr('disabled', 'disabled');
|
$('#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;
|
return false;
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Set some variables.
|
// Set some variables.
|
||||||
$eodOpenSearch = 'http://search.books2ebooks.eu/Search/Results';
|
$eodOpenSearch = 'https://search.books2ebooks.eu/Search/Results';
|
||||||
|
|
||||||
// Include required jQuery library.
|
// Include required jQuery library.
|
||||||
require_once ('lib/jQuery.php');
|
require_once ('lib/jQuery.php');
|
||||||
|
|
Loading…
Reference in New Issue