2025-06-16 18:28:08 +05:00

32 lines
818 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Justboil.me - a TinyMCE image upload plugin
* jbimages/config.php
*
* Released under Creative Commons Attribution 3.0 Unported License
*
* License: http://creativecommons.org/licenses/by/3.0/
* Plugin info: http://justboil.me/
* Author: Viktor Kuzhelnyi
*
* Version: 2.3 released 23/06/2013
*/
/*-------------------------------------------------------------------
|
| IMPORTANT NOTE! In case, when TinyMCEs folder is not protected with HTTP Authorisation,
| you should require is_allowed() function to return
| `TRUE` if user is authorised,
| `FALSE` - otherwise
|
| This is intended to protect upload script, if someone guesses it's url.
|
-------------------------------------------------------------------*/
function is_allowed()
{
return TRUE;
}
?>