From 732dcaf4c18e1cab8c5513877756ce1244401b73 Mon Sep 17 00:00:00 2001 From: Sebastian Meyer Date: Thu, 14 Mar 2019 09:31:45 +0100 Subject: [PATCH] Fix URIs in server and client --- client/js/jquery.eod.js | 2 +- server/search.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/js/jquery.eod.js b/client/js/jquery.eod.js index d066994..66692c5 100644 --- a/client/js/jquery.eod.js +++ b/client/js/jquery.eod.js @@ -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; } \ No newline at end of file diff --git a/server/search.php b/server/search.php index a6af4e1..56490bb 100644 --- a/server/search.php +++ b/server/search.php @@ -1,7 +1,7 @@