Revision: 6516
http://sitracker.svn.sourceforge.net/sitracker/?rev=6516&view=rev
Author: ivanlucas
Date: 2010-06-22 18:33:42 +0000 (Tue, 22 Jun 2010)
Log Message:
-----------
Print a message when a configured plugin has failed to load (been meaning to do this for so long it's untrue)
Modified Paths:
--------------
branches/3.x/about.php
Modified: branches/3.x/about.php
===================================================================
--- branches/3.x/about.php 2010-06-22 16:28:10 UTC (rev 6515)
+++ branches/3.x/about.php 2010-06-22 18:33:42 UTC (rev 6516)
@@ -125,7 +125,7 @@
{
echo "<p><strong>$plugin</strong>";
if ($PLUGININFO[$plugin]['version'] != '') echo " version ".number_format($PLUGININFO[$plugin]['version'], 2)."<br />";
- else echo "<br />";
+ else echo "- <span class='error'>$strFailed</span><br />";
if ($PLUGININFO[$plugin]['description'] != '') echo "{$PLUGININFO[$plugin]['description']}<br />";
if ($PLUGININFO[$plugin]['author'] != '') echo "{$strAuthor}: {$PLUGININFO[$plugin]['author']}<br />";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|