v2.3.6-cvs
----------
+[jan] Use personal address books first if determining the default one (Valentin
+ Vidic, Request #9367).
[jan] Use name format preference not only for paging, but for sorting too
(Request #8806).
[jan] Fix photo corruption when exporting to vCard 3.0 (Bug #9100).
}
}
+ /* In case of shares select first user owned address book as default */
+ if (!empty($_SESSION['turba']['has_share'])) {
+ try {
+ $owned_shares = Turba::listShares(true);
+ if (count($owned_shares) > 0) {
+ return key($owned_shares);
+ }
+ } catch (Exception $e) {}
+ }
+
reset($GLOBALS['cfgSources']);
return key($GLOBALS['cfgSources']);
}