add favicon to debugger
authorgggeek <giunta.gaetano@gmail.com>
Tue, 5 Jan 2021 15:02:39 +0000 (15:02 +0000)
committergggeek <giunta.gaetano@gmail.com>
Tue, 5 Jan 2021 15:02:39 +0000 (15:02 +0000)
debugger/action.php
debugger/controller.php
debugger/favicon.ico [new file with mode: 0644]
debugger/index.php

index c7f88de..09f9b88 100644 (file)
@@ -16,7 +16,8 @@ header('Content-Type: text/html; charset=utf-8');
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
 <head>
-    <title>XMLRPC Debugger</title>
+    <link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico">
+    <title><?php if (defined('DEFAULT_WSTYPE') && DEFAULT_WSTYPE == 1) echo 'JSONRPC'; else echo 'XMLRPC'; ?> Debugger</title>
     <meta name="robots" content="index,nofollow"/>
     <style type="text/css">
         <!--
index fa040c2..1501ac0 100644 (file)
@@ -31,6 +31,7 @@ $editorlibs = (defined('JSXMLRPC_PATH') ? JSXMLRPC_PATH : '../..') . '/jsxmlrpc/
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
 <head>
+    <link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico">
     <title><?php if (defined('DEFAULT_WSTYPE') && DEFAULT_WSTYPE == 1) echo 'JSONRPC'; else echo 'XMLRPC'; ?> Debugger</title>
     <meta name="robots" content="index,nofollow"/>
     <script type="text/javascript" language="Javascript">
diff --git a/debugger/favicon.ico b/debugger/favicon.ico
new file mode 100644 (file)
index 0000000..0106e8d
Binary files /dev/null and b/debugger/favicon.ico differ
index a8c0b55..e7e8bec 100644 (file)
@@ -11,7 +11,8 @@ if (isset($_GET['run'])) {
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
 <html lang="en">
 <head>
-    <title>XMLRPC Debugger</title>
+    <link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico">
+    <title><?php if (defined('DEFAULT_WSTYPE') && DEFAULT_WSTYPE == 1) echo 'JSONRPC'; else echo 'XMLRPC'; ?> Debugger</title>
 </head>
 <frameset rows="360,*">
     <frame name="frmcontroller" src="controller.php<?php echo htmlspecialchars($query); ?>" marginwidth="0"