Revision 1997
Added by Dietmar about 11 years ago
- /modules/droplets/droplets.functions.php::prepareDropletToFile added missing forward droplet flag into description text
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