r62984 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r62983‎ | r62984 | r62985 >
Date:23:19, 25 February 2010
Author:jeroendedauw
Status:ok
Tags:
Comment:
Typo fix and added comments like suggested at http://www.mediawiki.org/wiki/Special:Code/MediaWiki/62977#c6042
Modified paths:
  • /trunk/extensions/Storyboard/Storyboard_Settings.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Storyboard/Storyboard_Settings.php
@@ -17,11 +17,37 @@
1818 die( 'Not an entry point.' );
1919 }
2020
 21+/**
 22+ * The maximum length of a story (in characters) that can be submitted via the storysubmission tag.
 23+ * Can be overriden by the maxlength parameter in the storysubmission tag.
 24+ * @var integer
 25+ */
2126 $egStoryboardMaxStoryLen = 1000;
 27+/**
 28+ * The minimum length of a story (in characters) that can be submitted via the storysubmission tag.
 29+ * Can be overriden by the minlength parameter in the storysubmission tag.
 30+ * @var integer
 31+ */
2232 $egStoryboardMinStoryLen = 10;
2333
 34+/**
 35+ * The default width of storyboards, either in pixels, or as percentage.
 36+ * @var mixed
 37+ */
2438 $egStoryboardWidth = '80%';
25 -$egStoryboardHieght = 400;
 39+/**
 40+ * The default height of storyboards, either in pixels, or as percentage.
 41+ * @var mixed
 42+ */
 43+$egStoryboardHeight = 400;
2644
 45+/**
 46+ * TODO: document
 47+ * @var integer
 48+ */
2749 $egStoryboardBatchSize = 5;
 50+/**
 51+ * TODO: document
 52+ * @var integer
 53+ */
2854 $egStoryboardBatchAmount = 2;
\ No newline at end of file

Status & tagging log