Revision 1556
Added by Luisehahne almost 14 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
|
| 13 | 13 |
=========================== add small Features 2.8.2 ========================== |
| 14 |
02 Jan-2012 Build 1556 Dietmar Woellbrink (Luisehahne) |
|
| 15 |
# typofix in function make_dir |
|
| 14 | 16 |
02 Jan-2012 Build 1555 Dietmar Woellbrink (Luisehahne) |
| 15 | 17 |
! wb_quickSkin_28.php create _skin folders with folder protect file |
| 16 | 18 |
! add a 3th parameter to function make_dir to allows the creation of nested directories specified in the pathname. Defaults to TRUE |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 52 | 52 |
|
| 53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2');
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1555');
|
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1556');
|
|
| 56 | 56 |
if(!defined('SP')) define('SP', 'SP2');
|
| branches/2.8.x/wb/framework/functions.php | ||
|---|---|---|
| 401 | 401 |
} |
| 402 | 402 |
|
| 403 | 403 |
// Function to create directories |
| 404 |
function make_dir($dir_name, $dir_mode = OCTAL_DIR_MODE $recursive=true) |
|
| 404 |
function make_dir($dir_name, $dir_mode = OCTAL_DIR_MODE, $recursive=true)
|
|
| 405 | 405 |
{
|
| 406 | 406 |
$retVal = false; |
| 407 | 407 |
if(!is_dir($dir_name)) |
Also available in: Unified diff
typofix in function make_dir