summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFranklin Cooper Jr2011-10-27 16:38:56 -0500
committerFranklin Cooper Jr2011-10-27 16:38:56 -0500
commit8e2bd5ffdded23bb662476fcd2490fa1526801f8 (patch)
tree3fe9ae7a72c8ee5835466a07dd452be36b5bf4be
parent7dac7650b0fd0f976e15a17c8882a64a1a415a32 (diff)
downloadmatrix-gui-v2-8e2bd5ffdded23bb662476fcd2490fa1526801f8.tar.gz
matrix-gui-v2-8e2bd5ffdded23bb662476fcd2490fa1526801f8.tar.xz
matrix-gui-v2-8e2bd5ffdded23bb662476fcd2490fa1526801f8.zip
Fixed issue in IE. Single bracket was missing and prevented the app_description page from being displayed.
-rw-r--r--app_description.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app_description.php b/app_description.php
index a08f421..7317e03 100644
--- a/app_description.php
+++ b/app_description.php
@@ -84,7 +84,7 @@ $enable_exit_link = true;
84 84
85 $link = "run_script.php?&submenu=".urlencode($submenu)."&app=".urlencode($app_title); 85 $link = "run_script.php?&submenu=".urlencode($submenu)."&app=".urlencode($app_title);
86 86
87 echo "<div id = 'descrip_text'"; 87 echo "<div id = 'descrip_text'>";
88 echo "<div id =\"no_display\"><h1 style = 'color:red;'>Sorry</h1>You can't run the GUI application $title. The system has detected that your embedded system is not connected to a display device.</div>"; 88 echo "<div id =\"no_display\"><h1 style = 'color:red;'>Sorry</h1>You can't run the GUI application $title. The system has detected that your embedded system is not connected to a display device.</div>";
89 echo "<div id = \"running_remotely\"><h1 style = 'color:yellow;'>Warning</h1>You are currently running Matrix remotely and $title is a GUI based application. <br> After clicking run, look at the display device connected to the embedded system to see and/or interact with the application</div>"; 89 echo "<div id = \"running_remotely\"><h1 style = 'color:yellow;'>Warning</h1>You are currently running Matrix remotely and $title is a GUI based application. <br> After clicking run, look at the display device connected to the embedded system to see and/or interact with the application</div>";
90 90