Skip to content

Commit

Permalink
[jan] Fix exporting selected contacts (Bug #12759).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Oct 14, 2013
1 parent d5624b3 commit 7c3340f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions turba/docs/CHANGES
Expand Up @@ -2,6 +2,7 @@
v4.1.3-git
----------

[jan] Fix exporting selected contacts (Bug #12759).
[mms] Improved UI when viewing search results from Advanced Search.
[mms] Remove features from UI when VFS is not available or disabled.
[mjr] Fix filtering Facebook driver results (Bug #12739).
Expand Down
2 changes: 1 addition & 1 deletion turba/lib/Application.php
Expand Up @@ -465,7 +465,7 @@ public function download(Horde_Variables $vars)

case 'export':
$sources = array();
if ($vars->selected) {
if ($vars->objectkeys) {
foreach ($vars->objectkeys as $objectkey) {
list($source, $key) = explode(':', $objectkey, 2);
if (!isset($sources[$source])) {
Expand Down
2 changes: 2 additions & 0 deletions turba/package.xml
Expand Up @@ -40,6 +40,7 @@
</stability>
<license uri="http://www.horde.org/licenses/asl">ASL</license>
<notes>
* [jan] Fix exporting selected contacts (Bug #12759).
* [mms] Improved UI when viewing search results from Advanced Search.
* [mms] Remove features from UI when VFS is not available or disabled.
* [mjr] Fix filtering Facebook driver results (Bug #12739).
Expand Down Expand Up @@ -1699,6 +1700,7 @@
<date>2013-08-27</date>
<license uri="http://www.horde.org/licenses/asl">ASL</license>
<notes>
* [jan] Fix exporting selected contacts (Bug #12759).
* [mms] Improved UI when viewing search results from Advanced Search.
* [mms] Remove features from UI when VFS is not available or disabled.
* [mjr] Fix filtering Facebook driver results (Bug #12739).
Expand Down

0 comments on commit 7c3340f

Please sign in to comment.