system:
running Ubuntu 10.4 LTS, php 5.3.2
downloaded tattler from tattlerapp.com and upgraded to rc4.

Tattler is showing just 1 entry in e.g. mentions (all, all)

Apache-error-log shows:
PHP Fatal error: Unsupported operand types in /var/www/tattler.la-evento.com/html/tattler/includes/common.inc on line 1416

the code ist
1408 function url($path = NULL, $options = array()) {
1409 // Merge in defaults.
1410 $options += array(
1411 'fragment' => '',
1412 'query' => '',
1413 'absolute' => FALSE,
1414 'alias' => FALSE,
1415 'prefix' => ''
1416 );

fixed, by changing
$options += array()
to a
$options .= array()

now it shows multiple lines -- and i'm happy.

Comments

ka7’s picture

ok, this seems to work better:

function url($path = NULL, $options_i = array()) {
// Merge in defaults.
$options_a = array(
'fragment' => '',
'query' => '',
'absolute' => FALSE,
'alias' => FALSE,
'prefix' => ''
);
$options = array_merge($options_i , $options_a);

ka7’s picture

...and even better so... *dang*

function url($path = NULL, $options_i = array()) {
// Merge in defaults.
$options_a = array(
'fragment' => '',
'query' => '',
'absolute' => FALSE,
'alias' => FALSE,
'prefix' => ''
);
(array) $options = array_merge( (array)$options_a , (array) $options_i);