From dced01fc246b9b795842ff38136d338dc62ae26e Mon Sep 17 00:00:00 2001 From: MatthewM Date: Sat, 15 Dec 2012 01:14:52 -0500 Subject: [PATCH 01/14] Added a large scroll box for the chanserv main page --- modules/extra/webcpanel/templates/default/chanserv/main.html | 2 ++ modules/extra/webcpanel/templates/default/style.css | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/modules/extra/webcpanel/templates/default/chanserv/main.html b/modules/extra/webcpanel/templates/default/chanserv/main.html index 99fec7d75..dd9288f00 100644 --- a/modules/extra/webcpanel/templates/default/chanserv/main.html +++ b/modules/extra/webcpanel/templates/default/chanserv/main.html @@ -1,6 +1,8 @@ {INCLUDE header.html} Channels you have access in:
+
{FOR CH,ECH IN CHANNEL_NAMES,ESCAPED_CHANNEL_NAMES} {CH}
{END FOR} +
{INCLUDE footer.html} diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index 7934e4850..65715faca 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -101,6 +101,11 @@ body { height: 125px; } +.cinfo { + overflow-x: scroll; + height: 450px; +} + .akillR1 { width: 80px; text-align: left; From f33f7d98c4d38aabb9f9c54c7880249262e767a4 Mon Sep 17 00:00:00 2001 From: MatthewM Date: Mon, 17 Dec 2012 14:32:28 -0500 Subject: [PATCH 02/14] Added a modal window interface to MemoServs page that will automaticly fade out after a give time (currently 5s) --- .../extra/webcpanel/pages/memoserv/memos.cpp | 4 +- .../webcpanel/templates/default/header.html | 8 ++++ .../templates/default/memoserv/memos.html | 45 ++++++++++++++++++- .../webcpanel/templates/default/style.css | 26 +++++++++++ modules/extra/webcpanel/webcpanel.cpp | 11 ++--- modules/extra/webcpanel/webcpanel.h | 5 ++- 6 files changed, 89 insertions(+), 10 deletions(-) diff --git a/modules/extra/webcpanel/pages/memoserv/memos.cpp b/modules/extra/webcpanel/pages/memoserv/memos.cpp index 54c7a1227..e3a3f9b80 100644 --- a/modules/extra/webcpanel/pages/memoserv/memos.cpp +++ b/modules/extra/webcpanel/pages/memoserv/memos.cpp @@ -57,7 +57,7 @@ bool WebCPanel::MemoServ::Memos::OnRequest(HTTPProvider *server, const Anope::st params.push_back(HTTPUtils::URLDecode(message.post_data["receiver"])); params.push_back(HTTPUtils::URLDecode(message.post_data["message"])); - WebPanel::RunCommand(na->nc->display, na->nc, Config->MemoServ, "memoserv/send", params, replacements); + WebPanel::RunCommand(na->nc->display, na->nc, Config->MemoServ, "memoserv/send", params, replacements, "CMDR"); } if (message.get_data.count("del") > 0 && message.get_data.count("number") > 0) { @@ -66,7 +66,7 @@ bool WebCPanel::MemoServ::Memos::OnRequest(HTTPProvider *server, const Anope::st params.push_back(chname); params.push_back(message.get_data["number"]); - WebPanel::RunCommand(na->nc->display, na->nc, Config->MemoServ, "memoserv/del", params, replacements); + WebPanel::RunCommand(na->nc->display, na->nc, Config->MemoServ, "memoserv/del", params, replacements, "CMDR"); } if (message.get_data.count("read") > 0 && message.get_data.count("number") > 0) { diff --git a/modules/extra/webcpanel/templates/default/header.html b/modules/extra/webcpanel/templates/default/header.html index 38f367acc..c16799259 100644 --- a/modules/extra/webcpanel/templates/default/header.html +++ b/modules/extra/webcpanel/templates/default/header.html @@ -3,8 +3,16 @@ {TITLE} + + +
+
+
+
    diff --git a/modules/extra/webcpanel/templates/default/memoserv/memos.html b/modules/extra/webcpanel/templates/default/memoserv/memos.html index 559efd35b..c5c6b2fdd 100644 --- a/modules/extra/webcpanel/templates/default/memoserv/memos.html +++ b/modules/extra/webcpanel/templates/default/memoserv/memos.html @@ -1,7 +1,50 @@ {INCLUDE header.html} + {IF EXISTS CMDR} + + {END IF} Channels you have access in:
    {FOR CH,ECH IN CHANNEL_NAMES,ESCAPED_CHANNEL_NAMES} - {CH} + {CH} {END FOR}

    {FOR M IN MESSAGES} diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index 65715faca..4341d568e 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -3,6 +3,7 @@ font-family: 'Cabin', Helvetica, Arial, sans-serif; } body { overflow:hidden; + z-index: 10; } .master { margin-left:0px; @@ -123,3 +124,28 @@ body { color: red; weight: bolder; } + +/* Modal Window */ +#mask { + position: aboslute; + z-index: 9000; + background-color: #000; + height: 100%; + width: 100%; + display: none; +} + +#boxes .window { + position:fixed; + width:440px; + height:200px; + display:none; + z-index:9999; + padding:20px; +} + + #boxes #dialog { + background-color: #FFF; + width:375px; + height:203px; +} diff --git a/modules/extra/webcpanel/webcpanel.cpp b/modules/extra/webcpanel/webcpanel.cpp index a20b88ee9..816624628 100644 --- a/modules/extra/webcpanel/webcpanel.cpp +++ b/modules/extra/webcpanel/webcpanel.cpp @@ -217,12 +217,12 @@ class ModuleWebCPanel : public Module namespace WebPanel { - void RunCommand(const Anope::string &user, NickCore *nc, const Anope::string &service, const Anope::string &c, const std::vector ¶ms, TemplateFileServer::Replacements &r) + void RunCommand(const Anope::string &user, NickCore *nc, const Anope::string &service, const Anope::string &c, const std::vector ¶ms, TemplateFileServer::Replacements &r, const Anope::string &key) { ServiceReference cmd("Command", c); if (!cmd) { - r["MESSAGES"] = "Unable to find command " + c; + r[key] = "Unable to find command " + c; return; } @@ -237,15 +237,16 @@ namespace WebPanel struct MyComandReply : CommandReply { TemplateFileServer::Replacements &re; + const Anope::string &k; - MyComandReply(TemplateFileServer::Replacements &_r) : re(_r) { } + MyComandReply(TemplateFileServer::Replacements &_r, const Anope::string &_k) : re(_r), k(_k) { } void SendMessage(const BotInfo *source, const Anope::string &msg) anope_override { - re["MESSAGES"] = msg; + re[k] = msg; } } - my_reply(r); + my_reply(r, key); CommandSource source(user, NULL, nc, &my_reply, bi); cmd->Execute(source, params); diff --git a/modules/extra/webcpanel/webcpanel.h b/modules/extra/webcpanel/webcpanel.h index 511ecf354..7c897f9af 100644 --- a/modules/extra/webcpanel/webcpanel.h +++ b/modules/extra/webcpanel/webcpanel.h @@ -145,9 +145,10 @@ namespace WebPanel * @param service Service for source.owner and source.service * @param c Command to run (as a service name) * @param params Command parameters - * @param r Replacements, reply from command goes back into r["MESSAGES"] + * @param r Replacements, reply from command goes back here into key + * @param key The key to put the replies into r */ - extern void RunCommand(const Anope::string &user, NickCore *nc, const Anope::string &service, const Anope::string &c, const std::vector ¶ms, TemplateFileServer::Replacements &r); + extern void RunCommand(const Anope::string &user, NickCore *nc, const Anope::string &service, const Anope::string &c, const std::vector ¶ms, TemplateFileServer::Replacements &r, const Anope::string &key = "MESSAGES"); } #include "pages/index.h" From ff9f670871bb3ffc363abdc436c152dd90087982 Mon Sep 17 00:00:00 2001 From: MatthewM Date: Mon, 17 Dec 2012 18:28:15 -0500 Subject: [PATCH 03/14] Give the overlay window a rounded edge to make it look a bit nicer and fade the main content a little less --- .../extra/webcpanel/templates/default/memoserv/memos.html | 7 ++++--- modules/extra/webcpanel/templates/default/style.css | 3 +++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/modules/extra/webcpanel/templates/default/memoserv/memos.html b/modules/extra/webcpanel/templates/default/memoserv/memos.html index c5c6b2fdd..5f28edb92 100644 --- a/modules/extra/webcpanel/templates/default/memoserv/memos.html +++ b/modules/extra/webcpanel/templates/default/memoserv/memos.html @@ -17,7 +17,7 @@ \}); function hideModal() \{ - $('.content').fadeIn(200); + $('.master').fadeTo('slow',1.0); $('#mask, .window').fadeOut(200); \} @@ -27,7 +27,7 @@ $('#mask').css(\{'width': mWidth, 'height': mHeight\}); $('#mask').fadeIn(200); - $('#mask').fadeTo('fast',0.8); + $('#mask').fadeTo('fast',0.75); $(id).html('

    {CMDR}
    Close'); var top = mHeight/2-$(id).height()/2; @@ -35,8 +35,9 @@ $(id).css('top', top); $(id).css('left', left); + $('.master').fadeTo('fast',0.3); + $(id).fadeIn(500); - $('.content').fadeOut(200); \} \}); diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index 4341d568e..d05e23abe 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -148,4 +148,7 @@ body { background-color: #FFF; width:375px; height:203px; + padding: 20px; + -webkit-border-radius: 15px; + border-radius: 15px; } From 47a351acb235192c67f42594438cbce5be9cce10 Mon Sep 17 00:00:00 2001 From: MatthewM Date: Mon, 17 Dec 2012 19:26:07 -0500 Subject: [PATCH 04/14] Fixed a minor bug that overlapped the nav links and the content from .content in Chrome on Windows --- modules/extra/webcpanel/templates/default/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index d05e23abe..d7c7b4505 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -68,6 +68,7 @@ body { .content { left:220px; + padding-top:20px; top:50px; position:absolute; } From ddd7fe6f05f481111b595d6b264c5f05a7cab379 Mon Sep 17 00:00:00 2001 From: MatthewM Date: Mon, 17 Dec 2012 22:03:21 -0500 Subject: [PATCH 05/14] Bug that was experinced seems to be somewhat related to Windows 8 and maybe an extension on chrome. Reverting to previous commit --- modules/extra/webcpanel/templates/default/style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index d7c7b4505..d05e23abe 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -68,7 +68,6 @@ body { .content { left:220px; - padding-top:20px; top:50px; position:absolute; } From f157ea3fdb5bc77bb6528b02d6f1fffd4af54de6 Mon Sep 17 00:00:00 2001 From: MatthewM Date: Tue, 18 Dec 2012 10:04:26 -0500 Subject: [PATCH 06/14] Added a click reply function to the MemoServ memos page that autofills the senders name --- .../templates/default/memoserv/memos.html | 55 ++++++++++++------- .../webcpanel/templates/default/style.css | 9 ++- 2 files changed, 38 insertions(+), 26 deletions(-) diff --git a/modules/extra/webcpanel/templates/default/memoserv/memos.html b/modules/extra/webcpanel/templates/default/memoserv/memos.html index 5f28edb92..c078137d8 100644 --- a/modules/extra/webcpanel/templates/default/memoserv/memos.html +++ b/modules/extra/webcpanel/templates/default/memoserv/memos.html @@ -2,6 +2,8 @@ {IF EXISTS CMDR} {END IF} @@ -53,29 +56,39 @@ {END FOR}
    {IF EXISTS NUMBER} + Memos List: - +
    - - - + + + {FOR I,S,T,TXT,U IN NUMBER,SENDER,TIME,TEXT,UNREAD} - - - - {IF EQ U YES} - - {ELSE} - - {END IF} - - + + + - - + + + {IF EQ U YES} + + {ELSE} + + {END IF} + {END FOR}
    NumberSenderTime/MessageNumberSenderTime/Message
    {I}{S}{T}Mark as ReadMark as UnreadDelete{I}{S}{TXT}
    {TXT}Mark as Read + Reply DeleteMark as Unread + Reply Delete
    @@ -87,7 +100,7 @@ Send a new Memo
    - Receiver: + Receiver: Message:
    diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index d05e23abe..cab834ca1 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -107,6 +107,10 @@ body { height: 450px; } +.right { + text-align: right; +} +/* Table Stuff */ .akillR1 { width: 80px; text-align: left; @@ -120,11 +124,6 @@ body { text-align: left; } -.danger { - color: red; - weight: bolder; -} - /* Modal Window */ #mask { position: aboslute; From 6572754c10f695d9dab57cb5e2a26e212718ffa3 Mon Sep 17 00:00:00 2001 From: MatthewM Date: Tue, 18 Dec 2012 10:34:33 -0500 Subject: [PATCH 07/14] Cleaned up the overlay layout, added some minor visual and js fixes --- .../webcpanel/templates/default/header.html | 6 ++- .../templates/default/memoserv/memos.html | 22 ++++++---- .../webcpanel/templates/default/style.css | 40 +++++++++++++++---- 3 files changed, 51 insertions(+), 17 deletions(-) diff --git a/modules/extra/webcpanel/templates/default/header.html b/modules/extra/webcpanel/templates/default/header.html index c16799259..35bffaa23 100644 --- a/modules/extra/webcpanel/templates/default/header.html +++ b/modules/extra/webcpanel/templates/default/header.html @@ -10,7 +10,11 @@
    -
    +
    +

    Status Message:

    +
    + +
    diff --git a/modules/extra/webcpanel/templates/default/memoserv/memos.html b/modules/extra/webcpanel/templates/default/memoserv/memos.html index c078137d8..e62232baa 100644 --- a/modules/extra/webcpanel/templates/default/memoserv/memos.html +++ b/modules/extra/webcpanel/templates/default/memoserv/memos.html @@ -7,7 +7,6 @@ var id = "#dialog"; showModal(); - setInterval('hideModal()', t); $('.close').click(function (e) \{ e.preventDefault(); @@ -28,12 +27,14 @@ function showModal() \{ var mHeight = $(document).height(); var mWidth = $(window).width(); + + var alertMsg = '
    {CMDR}
    '; $('#mask').css(\{'width': mWidth, 'height': mHeight\}); $('#mask').fadeIn(200); $('#mask').fadeTo('fast',0.75); - $(id).html('

    {CMDR}
    Close'); + $('#dialogMsg').html(alertMsg); var top = mHeight/2-$(id).height()/2; var left= mWidth/2-$(id).width()/2; @@ -41,8 +42,11 @@ $(id).css('left', left); $('.master').fadeTo('fast',0.3); - $(id).fadeIn(500); - \} + $(id).fadeIn(500); + setTimeout(hideModal, t); + + \} + \}); {END IF} @@ -82,11 +86,13 @@ {IF EQ U YES} - Mark as Read - Reply Delete + Mark as Read    + Reply   + Delete {ELSE} - Mark as Unread - Reply Delete + Mark as Unread    + Reply    + Delete {END IF} diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index cab834ca1..73cac2329 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -124,9 +124,17 @@ body { text-align: left; } +td.right a:link, td.right a:visited { + color: #00F; + text-decoration: none; +} + +td.right a:hover { + text-decoration: underline; +} /* Modal Window */ #mask { - position: aboslute; + position: absolute; z-index: 9000; background-color: #000; height: 100%; @@ -143,11 +151,27 @@ body { padding:20px; } - #boxes #dialog { - background-color: #FFF; - width:375px; - height:203px; - padding: 20px; - -webkit-border-radius: 15px; - border-radius: 15px; +#boxes #dialog { + text-align: center; + background-color: #FFF; + width:375px; + height:203px; + padding: 20px; + -webkit-border-radius: 15px; + border-radius: 15px; + display: none; +} + +#dialogClose { + padding-top: 20px; +} + +#dialogClose a:link, #dialogClose a:visited { + color: #000; + text-decoration: none; +} + +#dialogClose a:hover { + color: #000; + text-decoration: underline; } From d277f4942305dc24eec22fd532477730b634c135 Mon Sep 17 00:00:00 2001 From: MatthewM Date: Wed, 19 Dec 2012 13:17:44 -0500 Subject: [PATCH 08/14] Minor style tweaks to make the links look more like a button --- .../extra/webcpanel/templates/default/memoserv/memos.html | 8 ++++---- modules/extra/webcpanel/templates/default/style.css | 8 ++++++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/modules/extra/webcpanel/templates/default/memoserv/memos.html b/modules/extra/webcpanel/templates/default/memoserv/memos.html index e62232baa..7cff20dbf 100644 --- a/modules/extra/webcpanel/templates/default/memoserv/memos.html +++ b/modules/extra/webcpanel/templates/default/memoserv/memos.html @@ -86,12 +86,12 @@ {IF EQ U YES} - Mark as Read    - Reply   + Mark as Read   + Reply  Delete {ELSE} - Mark as Unread    - Reply    + Mark as Unread ;  + Reply   Delete {END IF} diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index 73cac2329..94e7a900d 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -125,12 +125,16 @@ body { } td.right a:link, td.right a:visited { - color: #00F; + color: #000; + border: 1px solid #000; + padding: 1px 4px; + -webkit-border-radius: 5x; + border-radius: 5px; text-decoration: none; } td.right a:hover { - text-decoration: underline; + color: #00F; } /* Modal Window */ #mask { From 5acc93dd34c6bd474ae1bc85f70fa2d41a60f8bd Mon Sep 17 00:00:00 2001 From: MatthewM Date: Thu, 20 Dec 2012 01:19:04 -0500 Subject: [PATCH 09/14] Made the table cells for the memo table have no spacing and color the read and unread memos different colors --- .../templates/default/memoserv/memos.html | 17 +++++++++---- .../webcpanel/templates/default/style.css | 25 ++++++++++++++++++- 2 files changed, 36 insertions(+), 6 deletions(-) diff --git a/modules/extra/webcpanel/templates/default/memoserv/memos.html b/modules/extra/webcpanel/templates/default/memoserv/memos.html index 7cff20dbf..4d0024f91 100644 --- a/modules/extra/webcpanel/templates/default/memoserv/memos.html +++ b/modules/extra/webcpanel/templates/default/memoserv/memos.html @@ -77,20 +77,27 @@ Time/Message {FOR I,S,T,TXT,U IN NUMBER,SENDER,TIME,TEXT,UNREAD} - + {IF EQ U YES} + + {ELSE} + + {END IF} {I} {S} {TXT} - - - {IF EQ U YES} + + + Mark as Read   Reply  Delete {ELSE} - Mark as Unread ;  + + + + Mark as Unread   Reply   Delete {END IF} diff --git a/modules/extra/webcpanel/templates/default/style.css b/modules/extra/webcpanel/templates/default/style.css index 94e7a900d..13b4e4759 100644 --- a/modules/extra/webcpanel/templates/default/style.css +++ b/modules/extra/webcpanel/templates/default/style.css @@ -126,8 +126,9 @@ body { td.right a:link, td.right a:visited { color: #000; + background-color: #FFF; border: 1px solid #000; - padding: 1px 4px; + padding: 0px 4px; -webkit-border-radius: 5x; border-radius: 5px; text-decoration: none; @@ -136,6 +137,28 @@ td.right a:link, td.right a:visited { td.right a:hover { color: #00F; } + +table#memoTable { + border-spacing: 0px; + border-collapse: collapse; +} + +table#memoTable tr { + padding: 1px; +} + +tr.read { + background-color: #FFF; +} + +tr.unread { + background-color: #EEE; +} + +tr.read td, tr.unread td { + padding: 2px; +} + /* Modal Window */ #mask { position: absolute; From 8e219bdd770e5d62acca853ff0a47e32dc1b1dcf Mon Sep 17 00:00:00 2001 From: MatthewM Date: Thu, 20 Dec 2012 16:12:16 -0500 Subject: [PATCH 10/14] Moved the javascript to header.html from memos.html to make it easier to intergrate the overlay feedback and do tweaks --- .../webcpanel/templates/default/header.html | 51 +++++++++++++++++++ .../templates/default/memoserv/memos.html | 51 ------------------- 2 files changed, 51 insertions(+), 51 deletions(-) diff --git a/modules/extra/webcpanel/templates/default/header.html b/modules/extra/webcpanel/templates/default/header.html index 35bffaa23..15148838a 100644 --- a/modules/extra/webcpanel/templates/default/header.html +++ b/modules/extra/webcpanel/templates/default/header.html @@ -7,6 +7,57 @@ + {IF EXISTS CMDR} + + {END IF}
    diff --git a/modules/extra/webcpanel/templates/default/memoserv/memos.html b/modules/extra/webcpanel/templates/default/memoserv/memos.html index 4d0024f91..4239a926f 100644 --- a/modules/extra/webcpanel/templates/default/memoserv/memos.html +++ b/modules/extra/webcpanel/templates/default/memoserv/memos.html @@ -1,55 +1,4 @@ {INCLUDE header.html} - {IF EXISTS CMDR} - - {END IF} Channels you have access in:
    {FOR CH,ECH IN CHANNEL_NAMES,ESCAPED_CHANNEL_NAMES} {CH} From a4d5c40d6365806efd8beea089562b79102f4b5a Mon Sep 17 00:00:00 2001 From: MatthewM Date: Thu, 20 Dec 2012 16:22:58 -0500 Subject: [PATCH 11/14] Added the overlay to the vHost request function --- modules/extra/webcpanel/pages/hostserv/request.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/extra/webcpanel/pages/hostserv/request.cpp b/modules/extra/webcpanel/pages/hostserv/request.cpp index 20b4f5740..dfa4287f1 100644 --- a/modules/extra/webcpanel/pages/hostserv/request.cpp +++ b/modules/extra/webcpanel/pages/hostserv/request.cpp @@ -18,7 +18,7 @@ bool WebCPanel::HostServ::Request::OnRequest(HTTPProvider *server, const Anope:: std::vector params; params.push_back(HTTPUtils::URLDecode(message.post_data["req"])); - WebPanel::RunCommand(na->nc->display, na->nc, Config->HostServ, "hostserv/request", params, replacements); + WebPanel::RunCommand(na->nc->display, na->nc, Config->HostServ, "hostserv/request", params, replacements, "CMDR"); } if (na->HasVhost()) From 503bda5b2879309586f32ce39c57e2aafd6ca9e1 Mon Sep 17 00:00:00 2001 From: MatthewM Date: Thu, 20 Dec 2012 23:48:20 -0500 Subject: [PATCH 12/14] Move the var to set the time out into the same javascript tag that is used for the modal as it's related --- modules/extra/webcpanel/templates/default/header.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/extra/webcpanel/templates/default/header.html b/modules/extra/webcpanel/templates/default/header.html index 15148838a..fc13a97d2 100644 --- a/modules/extra/webcpanel/templates/default/header.html +++ b/modules/extra/webcpanel/templates/default/header.html @@ -4,11 +4,10 @@ {TITLE} - {IF EXISTS CMDR} {TITLE} - {IF EXISTS CMDR} From 29fcdc5f404c58209ae42a2e016e70b61685df9f Mon Sep 17 00:00:00 2001 From: MatthewM Date: Thu, 31 Jan 2013 21:24:48 -0500 Subject: [PATCH 14/14] Updated jquery API to v1.9.0 --- modules/extra/webcpanel/templates/default/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/extra/webcpanel/templates/default/header.html b/modules/extra/webcpanel/templates/default/header.html index b9b70cf33..3cb1cf372 100644 --- a/modules/extra/webcpanel/templates/default/header.html +++ b/modules/extra/webcpanel/templates/default/header.html @@ -2,7 +2,7 @@ - + {TITLE} {IF EXISTS CMDR}