diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-10-03 23:56:13 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-10-03 23:56:13 +0200 |
commit | 362f395e035682cd8d2437cfca904654687be867 (patch) | |
tree | 60496841656d86b46546877c8810afb471413edd /plugins | |
parent | 67f97194e446e81e0bc57ef60ae75ba0579170b7 (diff) |
Add documentation URL.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/DirectionDetector/DirectionDetectorPlugin.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php index ac6b43c1f..1473c386f 100644 --- a/plugins/DirectionDetector/DirectionDetectorPlugin.php +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -1,5 +1,4 @@ <?php - /** * DirectionDetector plugin, detects notices with RTL content & sets RTL * style for them. @@ -252,10 +251,13 @@ class DirectionDetectorPlugin extends Plugin { * plugin details */ function onPluginVersion(&$versions){ + $url = 'http://status.net/wiki/Plugin:DirectionDetector'; + $versions[] = array( 'name' => 'Direction detector', 'version' => DIRECTIONDETECTORPLUGIN_VERSION, 'author' => 'Behrooz Shabani', + 'homepage' => $url, 'rawdescription' => _m('Shows notices with right-to-left content in correct direction.') ); return true; |