File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 14
14
* [ Bug] Fixed footer lookup PHP error for sending emails
15
15
* [ Bug] Fixed changelog format
16
16
* [ Bug] Fixed styling on content management page (#20 )
17
+ * [ API] Added API call for getting content management text
17
18
* [ Project] Footers in the project are now generic
18
19
* [ Project] Default configs do not reference UMA labels anymore
19
20
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ header ('Content-type: text/plain ' );
4
+
5
+ require_once "../../../resources/autoload.php " ;
6
+
7
+ if (isset ($ _GET ["line_wrap " ])) {
8
+ $ CHAR_WRAP = $ _GET ["line_wrap " ];
9
+ } else {
10
+ $ CHAR_WRAP = 80 ;
11
+ }
12
+
13
+ if (!isset ($ _GET ["content_name " ])) {
14
+ die ();
15
+ }
16
+
17
+ echo $ SQL ->getPage ($ _GET ["content_name " ])["content " ];
You can’t perform that action at this time.
0 commit comments