Revision 1997
Added by Dietmar about 11 years ago
- /modules/droplets/droplets.functions.php::prepareDropletToFile added missing forward droplet flag into description text
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
=============================================================================== |
13 | 13 |
|
14 |
09 Nov-2013 Build 1997 Dietmar Woellbrink (Luisehahne) |
|
15 |
# /modules/droplets/droplets.functions.php::prepareDropletToFile added missing forward droplet flag into description text |
|
14 | 16 |
09 Nov-2013 Build 1996 Dietmar Woellbrink (Luisehahne) |
15 | 17 |
# /framework/initialize.php::readConfiguration missing constants setting solved |
16 | 18 |
07 Nov-2013 Build 1995 Manuela v.d.Decken(DarkViper) |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
|
52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.3'); |
54 |
if(!defined('REVISION')) define('REVISION', '1996');
|
|
54 |
if(!defined('REVISION')) define('REVISION', '1997');
|
|
55 | 55 |
if(!defined('SP')) define('SP', ''); |
branches/2.8.x/wb/modules/droplets/droplets.functions.php | ||
---|---|---|
22 | 22 |
require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php'); |
23 | 23 |
throw new IllegalFileException(); |
24 | 24 |
} |
25 |
|
|
26 | 25 |
/* -------------------------------------------------------- */ |
27 | 26 |
|
28 | 27 |
function prepareDropletToFile($aDroplet) { |
29 | 28 |
$retVal = ''; |
30 |
$sDescription = '//:'.($aDroplet['description']!='') ? $aDroplet['description']: 'Desription';
|
|
29 |
$sDescription = '//:'.(($aDroplet['description']!='') ? $aDroplet['description']: 'Desription');
|
|
31 | 30 |
$sComments = ''; |
32 | 31 |
$aComments = explode("\n",$aDroplet['comments']); |
33 | 32 |
$sCode = ''; |
... | ... | |
62 | 61 |
$retVal .= $sFileName.','; |
63 | 62 |
} |
64 | 63 |
} |
65 |
|
|
66 | 64 |
} |
67 | 65 |
return $retVal; |
68 | 66 |
} |
Also available in: Unified diff