Hello.
I'm really enjoying going into ProcessWire after using Drupal, CodeIgniter and FuelPHP for a while.
Anyway my first question is with this bit of code
$items = $page->siblings("template=portfolio-item, sort=random, path!={$page->path}");
As you can see, I'm trying to get siblings of the page, excluding current one.
But instead it returns ONLY current page, as if there was no exclamation mark in the path selector.
What's the problem here?
Update:
Okay, have found solution here http://processwire.com/talk/topic/1230-limit-siblings-after-removing-page/
Still curious about path selector behaviour though.