Fedora core 4 comes with PHP 5 if I'm correctly informed. It looks like Slash has a problem with PHP 5. I unfortunately don't have a box with PHP 5 for testing.
I think Drupal as a hole still works best with PHP 4 so you could try that. You can also just delete the edit link function. Changing this (line 172-179)
if ($node->links) {
if (user_access("administer nodes")) {
$edit_link = l(t('edit'), "node/$node->nid/edit", array('title' => t('Edit this post.')));
}
$output .= "<div class=\"nodemore\">";
$output .= theme('links', array_merge($edit_link, $node->links));
$output .= "</div></div>\n";
}
Comments
Comment #1
frjo commentedFedora core 4 comes with PHP 5 if I'm correctly informed. It looks like Slash has a problem with PHP 5. I unfortunately don't have a box with PHP 5 for testing.
I think Drupal as a hole still works best with PHP 4 so you could try that. You can also just delete the edit link function. Changing this (line 172-179)
to this should work I think.
Comment #2
huyl commentedthank you frjo.
it's ok after change that.
Comment #3
(not verified) commentedComment #4
(not verified) commentedComment #5
frjo commented