r101530 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r101529‎ | r101530 | r101531 >
Date:21:17, 1 November 2011
Author:jeroendedauw
Status:ok
Tags:
Comment:
kill not needed dies
Modified paths:
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_CategoriesInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_CategoryInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxesInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_ComboBoxInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_DateInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_DateTimeInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_DropdownInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_EnumInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_FormInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_ListBoxInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_MultiEnumInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_RadioButtonInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_YearInput.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticForms/includes/forminputs/SF_ListBoxInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFListBoxInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CategoriesInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFCategoriesInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFCheckboxInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_RadioButtonInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFRadioButtonInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DateTimeInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFDateTimeInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DropdownInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFDropdownInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_YearInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFYearInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_FormInput.php
@@ -16,10 +16,6 @@
1717 * @ingroup SF
1818 */
1919
20 -if ( !defined( 'SF_VERSION' ) ) {
21 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
22 -}
23 -
2420 /**
2521 * Parent class for all form input classes.
2622 * @ingroup SFFormInput
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_EnumInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFEnumInput class.
1612 * The base class for every form input that holds a pre-set enumeration
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_ComboBoxInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFComboBoxInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CategoryInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFCategoryInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DateInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFDateInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxesInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFCheckboxesInput class.
1612 *
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_MultiEnumInput.php
@@ -6,10 +6,6 @@
77 * @ingroup SF
88 */
99
10 -if ( !defined( 'SF_VERSION' ) ) {
11 - die( 'This file is part of the SemanticForms extension, it is not a valid entry point.' );
12 -}
13 -
1410 /**
1511 * The SFMultiEnumInput class.
1612 * The base class for every form input that holds a list of elements, each

Status & tagging log