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
2 changes: 1 addition & 1 deletion ajax/getCandidateIdByEmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

$interface = new SecureAJAXInterface();

include (LEGACY_ROOT .'/lib/Candidates.php');
include (LEGACY_ROOT . '/lib/Candidates.php');

if (!isset($_REQUEST['email']))
{
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
/* Do we need to run the installer? */
if (!file_exists('INSTALL_BLOCK') && !isset($_POST['performMaintenence']))
{
include(LEGACY_ROOT .'/modules/install/notinstalled.php');
include(LEGACY_ROOT . '/modules/install/notinstalled.php');
die();
}

Expand Down Expand Up @@ -151,7 +151,7 @@ function stripslashes_deep($value)
if (ModuleUtility::moduleExists("asp") && ModuleUtility::moduleExists("website"))
{
// FIXME: Can we optimize this a bit...?
include_once(LEGACY_ROOT .'/modules/asp/lib/General.php');
include_once(LEGACY_ROOT . '/modules/asp/lib/General.php');

if (!(isset($careerPage) && $careerPage) &&
!(isset($rssPage) && $rssPage) &&
Expand Down
2 changes: 1 addition & 1 deletion lib/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @version $Id: Dashboard.php 3784 2007-12-03 21:57:10Z brian $
*/

include_once(LEGACY_ROOT .'/lib/Calendar.php');
include_once(LEGACY_ROOT . '/lib/Calendar.php');

/**
* Dashboard Library
Expand Down