Commit 4c9c1962d772372166475304e384f7bb61a1d5c5
1 parent
d4930f48
Fix ordering of folder actions when Multi-select plugin enabled
Story ID:1321064. KTS-4403: With the 'Multi-select' plugin enabled the 'Folder actions' are out of order. Fixed Committed by: Paul Barrett
Showing
3 changed files
with
3 additions
and
2 deletions
plugins/multiselect/BulkImport.php
| ... | ... | @@ -71,7 +71,7 @@ class InetBulkImportFolderMultiSelectAction extends KTFolderAction { |
| 71 | 71 | if (method_exists($oPage, 'requireJSResources')) { |
| 72 | 72 | $oPage->requireJSResources($aJavascript); |
| 73 | 73 | } |
| 74 | - return $js._kt('Import from Server Location'); | |
| 74 | + return _kt('Import from Server Location') . $js; | |
| 75 | 75 | } |
| 76 | 76 | else |
| 77 | 77 | { | ... | ... |
plugins/multiselect/BulkUpload.php
plugins/multiselect/MultiSelectPlugin.php
| ... | ... | @@ -126,6 +126,7 @@ class MultiSelectPlugin extends KTPlugin { |
| 126 | 126 | 'InetdocumentFieldsv2.php', null); |
| 127 | 127 | } |
| 128 | 128 | } |
| 129 | + | |
| 129 | 130 | $oPluginRegistry =& KTPluginRegistry::getSingleton(); |
| 130 | 131 | $oPluginRegistry->registerPlugin('MultiSelectPlugin', 'inet.multiselect.lookupvalue.plugin', __FILE__); |
| 131 | 132 | ?> |
| 132 | 133 | \ No newline at end of file | ... | ... |