diff options
Diffstat (limited to 'sections/tools/misc/bbcode_sandbox.php')
-rw-r--r-- | sections/tools/misc/bbcode_sandbox.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sections/tools/misc/bbcode_sandbox.php b/sections/tools/misc/bbcode_sandbox.php new file mode 100644 index 0000000..1ad405e --- /dev/null +++ b/sections/tools/misc/bbcode_sandbox.php @@ -0,0 +1,16 @@ +<? +if (!check_perms("users_mod")) { + error(403); +} + +View::show_header("BBCode Sandbox", 'bbcode_sandbox'); +?> +<div class="thin"> + <textarea id="sandbox" class="wbbarea" style="width: 98%;" onkeyup="resize('sandbox');" name="body" cols="90" rows="8"></textarea> + <br /> + <br /> + <div id="preview" class=""> + </div> +</div> +<? +View::show_footer();
\ No newline at end of file |