~dangarner/xibo/335652

« back to all changes in this revision

Viewing changes to server/lib/xmds.inc.php

  • Committer: Alex Harrington
  • Date: 2009-02-25 13:09:33 UTC
  • mfrom: (6.1.1 334322)
  • Revision ID: alex@longhill.org.uk-20090225130933-pyo7kmagq2eel1a8
[server] Merged from lp:~alexharrington/xibo/334322 - Fix for xmds.inc.php unable to add new clients

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
    $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
53
53
}
54
54
 
55
 
if (!file_exists("settings.php") {
 
55
if (!file_exists("settings.php")) {
56
56
  // Xibo has not been configured. Just quit since we can't
57
57
  // raise a SOAP error because we don't know where
58
58
  // nuSOAP is yet.
59
59
  die("Not configured. Visit " . Kit::GetURL() . " to configure.");
60
60
}
61
61
 
62
 
if (file_exists("upgrade.php") {
 
62
if (file_exists("upgrade.php")) {
63
63
  // An upgrade is in progress. Just quit since the server
64
64
  // won't be in a servicable state
65
65
  die("An upgrade is pending. Visit " . Kit::GetURL() . ".");