fix recent changes to debugger code
authorgggeek <giunta.gaetano@gmail.com>
Thu, 24 Nov 2022 17:43:18 +0000 (17:43 +0000)
committergggeek <giunta.gaetano@gmail.com>
Thu, 24 Nov 2022 17:43:18 +0000 (17:43 +0000)
debugger/action.php
debugger/controller.php
debugger/index.php

index bd192e1..9dacf15 100644 (file)
@@ -9,7 +9,7 @@
  * @todo be smarter in creating client stub for proxy/auth cases: only set appropriate property of client obj
  **/
 
-if (getenv('TESTMODE') === 'true') require_once __DIR__ . "../demo/server/_prepend.php";
+if (getenv('TESTMODE') === 'true') require_once __DIR__ . "/../demo/server/_prepend.php";
 
 header('Content-Type: text/html; charset=utf-8');
 
@@ -565,4 +565,4 @@ if ($action) {
 ?>
 </body>
 </html>
-<?php if (getenv('TESTMODE') === 'true') require_once __DIR__ . "../demo/server/_append.php"; ?>
+<?php if (getenv('TESTMODE') === 'true') require_once __DIR__ . "/../demo/server/_append.php"; ?>
index 5a80090..1fcfea9 100644 (file)
@@ -14,7 +14,7 @@
  * @todo if js libs are not available, do not try to load them
  **/
 
-if (getenv('TESTMODE') === 'true') require_once __DIR__ . "../demo/server/_prepend.php";
+if (getenv('TESTMODE') === 'true') require_once __DIR__ . "/../demo/server/_prepend.php";
 
 // Make sure we set the correct charset type for output, so that we can display all characters
 header('Content-Type: text/html; charset=utf-8');
@@ -361,4 +361,4 @@ $editorlibs = (defined('JSXMLRPC_PATH') ? JSXMLRPC_PATH : '../..') . '/jsxmlrpc/
 </form>
 </body>
 </html>
-<?php if (getenv('TESTMODE') === 'true') require_once __DIR__ . "../demo/server/_append.php"; ?>
+<?php if (getenv('TESTMODE') === 'true') require_once __DIR__ . "/../demo/server/_append.php"; ?>
index 18c7418..7da4408 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-if (getenv('TESTMODE') === 'true') require_once __DIR__ . "../demo/server/_prepend.php";
+if (getenv('TESTMODE') === 'true') require_once __DIR__ . "/../demo/server/_prepend.php";
 
 $query = '';
 if (isset($_GET['run'])) {
@@ -23,4 +23,4 @@ if (isset($_GET['run'])) {
     <frame name="frmaction" src="action.php" marginwidth="0" marginheight="0" frameborder="0"/>
 </frameset>
 </html>
-<?php if (getenv('TESTMODE') === 'true') require_once __DIR__ . "../demo/server/_append.php"; ?>
+<?php if (getenv('TESTMODE') === 'true') require_once __DIR__ . "/../demo/server/_append.php"; ?>