mirror of
https://github.com/friendica/friendica
synced 2024-11-19 06:23:40 +00:00
revup
This commit is contained in:
parent
c92e6ed929
commit
0f3292fefb
2 changed files with 5 additions and 3 deletions
2
boot.php
2
boot.php
|
@ -4,7 +4,7 @@ set_time_limit(0);
|
||||||
ini_set('pcre.backtrack_limit', 250000);
|
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 ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1063 );
|
define ( 'DB_UPDATE_VERSION', 1063 );
|
||||||
|
|
||||||
|
|
|
@ -114,10 +114,12 @@ tinyMCE.init({
|
||||||
|
|
||||||
$('.item-select').each( function() {
|
$('.item-select').each( function() {
|
||||||
if($(this).is(':checked')) {
|
if($(this).is(':checked')) {
|
||||||
if(checkedstr.length != 0)
|
if(checkedstr.length != 0) {
|
||||||
checkedstr = checkedstr + ',' + $(this).val();
|
checkedstr = checkedstr + ',' + $(this).val();
|
||||||
else
|
}
|
||||||
|
else {
|
||||||
checkedstr = $(this).val();
|
checkedstr = $(this).val();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$.post('item', { dropitems: checkedstr }, function(data) {
|
$.post('item', { dropitems: checkedstr }, function(data) {
|
||||||
|
|
Loading…
Reference in a new issue