[Owncloud] Bookmarks app in 4.0.2

2012-06-20 Thread Christian Homrighausen
Hi, Whenever I use the "read later" bookmarklet to create a bookmark, there is only an "unnamed" entry with no URL. This occurs since version 4.0.2 Anyone else with this problem? ___ Owncloud mailing list Owncloud@kde.org https://mail.kde.org/mailm

Re: [Owncloud] Bookmarks app in 4.0.2

2012-06-20 Thread Gernot Wittrock
Whenever I use the "read later" bookmarklet to create a bookmark, there is only an "unnamed" entry with no URL. This occurs since version 4.0.2 Anyone else with this problem? I can confirm this error. Gernot Wittrock ___ Owncloud mailing list Ownclou

Re: [Owncloud] Bookmarks app in 4.0.2

2012-06-20 Thread Christian Reiner
On Wednesday 20 June 2012 15:38:56 Christian Homrighausen wrote: > Hi, > > Whenever I use the "read later" bookmarklet to create a bookmark, there > is only an "unnamed" entry with no URL. I confirm this bug, using OC-4.0.2 under opensuse x86, apache 2.2, php 5.3. Firefox 13 under opensuse x86-6

Re: [Owncloud] Bookmarks app in 4.0.2

2012-06-20 Thread Victor Dubiniuk
Hi, this one seems to be a victim of CSRF protection. As a temporary fix apps/bookmarks/addBm.php, line #31 addBookmark($_POST['url'], '', 'Read-Later'); should be changed to addBookmark($_GET['url'], '', 'Read-Later'); P.S. Please do not forget to submit it to the bug tracker. --- Victor

Re: [Owncloud] Bookmarks app in 4.0.2

2012-06-20 Thread Arthur Schiwon
Hey, On 06/20/2012 05:55 PM, Victor Dubiniuk wrote: Hi, this one seems to be a victim of CSRF protection. As a temporary fix apps/bookmarks/addBm.php, line #31 addBookmark($_POST['url'], '', 'Read-Later'); should be changed to addBookmark($_GET['url'], '', 'Read-Later'); i'm looking into

Re: [Owncloud] Bookmarks app in 4.0.2

2012-06-20 Thread Arthur Schiwon
On 06/20/2012 05:55 PM, Victor Dubiniuk wrote: Hi, this one seems to be a victim of CSRF protection. As a temporary fix apps/bookmarks/addBm.php, line #31 addBookmark($_POST['url'], '', 'Read-Later'); should be changed to addBookmark($_GET['url'], '', 'Read-Later'); Ok, I changed it bac