aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-16 15:26:39 -0700
committerFriendika <info@friendika.com>2011-06-16 15:26:39 -0700
commit0f3292fefb96016ad98b8f25746824d9e3cff31e (patch)
tree1050704a36aa58daad31cf380bb97acddf7c418b
parentc92e6ed929ddb12a3020eecf419a30b680fe4240 (diff)
downloadvolse-hubzilla-0f3292fefb96016ad98b8f25746824d9e3cff31e.tar.gz
volse-hubzilla-0f3292fefb96016ad98b8f25746824d9e3cff31e.tar.bz2
volse-hubzilla-0f3292fefb96016ad98b8f25746824d9e3cff31e.zip
revup
-rw-r--r--boot.php2
-rw-r--r--view/jot-header.tpl6
2 files changed, 5 insertions, 3 deletions
diff --git a/boot.php b/boot.php
index 49247eb23..94db29942 100644
--- a/boot.php
+++ b/boot.php
@@ -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 );
diff --git a/view/jot-header.tpl b/view/jot-header.tpl
index 61c80702e..bf2dde8e9 100644
--- a/view/jot-header.tpl
+++ b/view/jot-header.tpl
@@ -114,10 +114,12 @@ 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) {