ini_set('pcre.backtrack_limit', 250000);
-define ( 'FRIENDIKA_VERSION', '2.2.1012' );
+define ( 'FRIENDIKA_VERSION', '2.2.1013' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1063 );
$('.item-select').each( function() {
if($(this).is(':checked')) {
- if(checkedstr.length != 0)
+ if(checkedstr.length != 0) {
checkedstr = checkedstr + ',' + $(this).val();
- else
+ }
+ else {
checkedstr = $(this).val();
+ }
}
});
$.post('item', { dropitems: checkedstr }, function(data) {