Revision 1720
Added by Luisehahne about 13 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 13 | 13 |
|
| 14 | 14 |
|
| 15 | 15 |
|
| 16 |
29 Aug-2012 Build 1720 Dietmar Woellbrink (Luisehahne) |
|
| 17 |
! FCKEditor remove som php endtags in connector |
|
| 18 |
29 Aug-2012 Build 1719 Dietmar Woellbrink (Luisehahne) |
|
| 19 |
! beginning update frontend account |
|
| 20 |
! remove html markup from code |
|
| 16 | 21 |
29 Aug-2012 Build 1718 Dietmar Woellbrink (Luisehahne) |
| 17 | 22 |
! update headerinfo |
| 18 | 23 |
! change multi-dimensional arrays (variables) to similar arrays |
| 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', '1718');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1720');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
| branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/filemanager/browser/default/frmupload.html | ||
|---|---|---|
| 97 | 97 |
</head> |
| 98 | 98 |
<body> |
| 99 | 99 |
<form id="frmUpload" action="" target="frmUploadWorker" method="post" onsubmit="return OnSubmit();"> |
| 100 |
<table class="fullHeight" cellspacing="0" cellpadding="0" width="100%" border="0"> |
|
| 100 |
<table class="fullHeight" cellspacing="0" cellpadding="0" width="100%" border="0" style="display: none;" >
|
|
| 101 | 101 |
<tr> |
| 102 | 102 |
<td nowrap="nowrap"> |
| 103 |
<span id=""> </span><br>
|
|
| 103 |
<span id="eUploadMessage">Upload a new file in this folder</span><br>
|
|
| 104 | 104 |
<table cellspacing="0" cellpadding="0" width="100%" border="0"> |
| 105 | 105 |
<tr> |
| 106 |
<td width="100%"> </td>
|
|
| 107 |
<td nowrap="nowrap"> </td> |
|
| 106 |
<td width="100%"><input id="NewFile" name="NewFile" style="WIDTH: 100%" type="file"></td>
|
|
| 107 |
<td nowrap="nowrap"> <input id="btnUpload" type="submit" value="Upload"></td>
|
|
| 108 | 108 |
</tr> |
| 109 | 109 |
</table> |
| 110 | 110 |
</td> |
| branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html | ||
|---|---|---|
| 95 | 95 |
</script> |
| 96 | 96 |
</head> |
| 97 | 97 |
<body> |
| 98 |
<table class="fullHeight" cellSpacing="0" cellPadding="0" width="100%" border="0"> |
|
| 98 |
<table class="fullHeight" cellSpacing="0" cellPadding="0" width="100%" border="0" style="display: none;" >
|
|
| 99 | 99 |
<tr> |
| 100 | 100 |
<td> |
| 101 |
<button type="button" style="WIDTH: 100%" onclick="CreateFolder();"> |
|
| 101 | 102 |
<table cellSpacing="0" cellPadding="0" border="0"> |
| 102 | 103 |
<tr> |
| 104 |
<td><img height="16" alt="" src="images/Folder.gif" width="16"></td> |
|
| 103 | 105 |
<td> </td> |
| 104 |
<td> </td> |
|
| 105 |
<td nowrap> </td> |
|
| 106 |
<td nowrap>Create New Folder</td> |
|
| 106 | 107 |
</tr> |
| 107 | 108 |
</table> |
| 109 |
</button> |
|
| 108 | 110 |
</td> |
| 109 | 111 |
</tr> |
| 110 | 112 |
</table> |
| branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/filemanager/connectors/php/basexml.php | ||
|---|---|---|
| 96 | 96 |
else |
| 97 | 97 |
echo '<Error number="' . $number . '" />' ; |
| 98 | 98 |
} |
| 99 |
?> |
|
| branches/2.8.x/wb/modules/fckeditor/fckeditor/editor/filemanager/connectors/php/config.php | ||
|---|---|---|
| 231 | 231 |
$Config['FileTypesAbsolutePath']['Media'] = $Config['UserFilesAbsolutePath']; |
| 232 | 232 |
$Config['QuickUploadPath']['Media'] = $Config['UserFilesPath'] ; |
| 233 | 233 |
$Config['QuickUploadAbsolutePath']['Media'] = $Config['UserFilesAbsolutePath'] ; |
| 234 |
|
|
| 235 |
?> |
|
Also available in: Unified diff
! FCKEditor remove som php endtags in connector