Merge "mw.Feedback: If the message is posted remotely, link the title correctly"
[lhc/web/wiklou.git] / includes / htmlform / HTMLNestedFilterable.php
1 <?php
2
3 interface HTMLNestedFilterable {
4 /**
5 * Support for seperating multi-option preferences into multiple preferences
6 * Due to lack of array support.
7 *
8 * @param array $data
9 */
10 public function filterDataForSubmit( $data );
11 }