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 1414* [ Bug] Fixed footer lookup PHP error for sending emails
1515* [ Bug] Fixed changelog format
1616* [ Bug] Fixed styling on content management page (#20 )
17+ * [ API] Added API call for getting content management text
1718* [ Project] Footers in the project are now generic
1819* [ Project] Default configs do not reference UMA labels anymore
1920
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