This might just be a typo. Line 1559:

         $this->orderby[] = str_replace('ORDER BY ', '', $result);

generated a "[] operator not supported for strings" error, when I tried to order by Note Title. It seems to work fine when I changed it to:

         $this->orderby = str_replace('ORDER BY ', '', $result);

Doesn't seem worth rolling a patch for.
I guess there are not a lot of folk testing views for 4.6 yet. Their loss - just wait until they hear it is the best thing since sliced bread.

CommentFileSizeAuthor
#1 views.str.patch406 bytesstarbow

Comments

starbow’s picture

Status: Active » Needs review
StatusFileSize
new406 bytes

Since I am rolling patches anyway...

merlinofchaos’s picture

Status: Needs review » Fixed

Commited, thanks!!

Anonymous’s picture

Status: Fixed » Closed (fixed)