summaryrefslogtreecommitdiffstats
path: root/src/WebAdmin.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-08-09 22:54:43 +0200
committermadmaxoft <github@xoft.cz>2014-08-09 22:56:15 +0200
commitb0dedb01977fe4cd7ebd51db5784d8ca415f1567 (patch)
tree1911f7e4eee741a9fa7ba977ae15c3fb3fd2d332 /src/WebAdmin.h
parentWebAdmin: Added GetURLEncodedString(). (diff)
downloadcuberite-b0dedb01977fe4cd7ebd51db5784d8ca415f1567.tar
cuberite-b0dedb01977fe4cd7ebd51db5784d8ca415f1567.tar.gz
cuberite-b0dedb01977fe4cd7ebd51db5784d8ca415f1567.tar.bz2
cuberite-b0dedb01977fe4cd7ebd51db5784d8ca415f1567.tar.lz
cuberite-b0dedb01977fe4cd7ebd51db5784d8ca415f1567.tar.xz
cuberite-b0dedb01977fe4cd7ebd51db5784d8ca415f1567.tar.zst
cuberite-b0dedb01977fe4cd7ebd51db5784d8ca415f1567.zip
Diffstat (limited to 'src/WebAdmin.h')
-rw-r--r--src/WebAdmin.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WebAdmin.h b/src/WebAdmin.h
index 018a27b69..f48e8ce9e 100644
--- a/src/WebAdmin.h
+++ b/src/WebAdmin.h
@@ -132,17 +132,17 @@ public:
/** Returns the prefix needed for making a link point to the webadmin root from the given URL ("../../../webadmin"-style) */
AString GetBaseURL(const AString & a_URL);
+ AString GetIPv4Ports(void) const { return m_PortsIPv4; }
+ AString GetIPv6Ports(void) const { return m_PortsIPv6; }
+
+ // tolua_end
+
/** Escapes text passed into it, so it can be embedded into html. */
static AString GetHTMLEscapedString(const AString & a_Input);
/** Escapes the string for use in an URL */
static AString GetURLEncodedString(const AString & a_Input);
- AString GetIPv4Ports(void) const { return m_PortsIPv4; }
- AString GetIPv6Ports(void) const { return m_PortsIPv6; }
-
- // tolua_end
-
/** Returns the prefix needed for making a link point to the webadmin root from the given URL ("../../../webadmin"-style) */
static AString GetBaseURL(const AStringVector & a_URLSplit);