This commit is contained in:
Friendika 2011-06-16 15:26:39 -07:00
parent c92e6ed929
commit 0f3292fefb
2 changed files with 5 additions and 3 deletions

View File

@ -4,7 +4,7 @@ set_time_limit(0);
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 );

View File

@ -114,11 +114,13 @@ tinyMCE.init({
$('.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) {
window.location.reload();