diff -r 0506adb8eb6c -r d894086f38cc plugins/SpecialLog.php
--- a/plugins/SpecialLog.php Wed May 13 09:43:00 2009 -0400
+++ b/plugins/SpecialLog.php Wed May 13 09:43:57 2009 -0400
@@ -311,7 +311,10 @@
$crumb = $lang->get('log_breadcrumb_author', array('user' => $user_link));
break;
case 'page':
- $crumb = $lang->get('log_breadcrumb_page', array('page' => '' . htmlspecialchars(get_page_title($value)) . ''));
+ list($pid, $ns) = RenderMan::strToPageID($value);
+ $ns = namespace_factory($pid, $ns);
+ $exist = $ns->exists() ? '' : ' class="wikilink-nonexistent"';
+ $crumb = $lang->get('log_breadcrumb_page', array('page' => '' . htmlspecialchars($ns->title) . ''));
break;
case 'action':
$action = ( $lang->get("log_formaction_{$value}") === "log_formaction_{$value}" ) ? $lang->get("log_action_{$value}") : $lang->get("log_formaction_{$value}");