Skip to content

Commit

Permalink
Merge pull request #91 from SemanticMediaWiki/ref
Browse files Browse the repository at this point in the history
Fix class ref in slideshow API
  • Loading branch information
JeroenDeDauw committed Feb 26, 2015
2 parents e91cbd7 + 959c1c4 commit ae710c5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
These are the release notes for the [Semantic Result Formats]
(https://semantic-mediawiki.org/wiki/Semantic_Result_Formats) MediaWiki extension.

## SRF 2.1.2 (2015-02-26)

* Fixed bug in the slideshow format API

## SRF 2.1.1 (2015-02-04)

* Fixed various jQuery 1.9+ issues that appeared in connection with MW 1.24+ including `jquery.jqplot`, `jquery.fancybox`, and`jquery.jgrid`
Expand Down
2 changes: 1 addition & 1 deletion SemanticResultFormats.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
return 1;
}

define( 'SRF_VERSION', '2.1.1' );
define( 'SRF_VERSION', '2.1.2' );

if ( version_compare( $GLOBALS['wgVersion'], '1.19c', '<' ) ) {
throw new Exception( 'This version of Semantic Result Formats requires MediaWiki 1.17 or above; use SRF 1.7.x or SRF 1.6.x for older versions.' );
Expand Down
10 changes: 3 additions & 7 deletions formats/slideshow/SRF_SlideShowApi.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
<?php
/**
* File holding the SRF_SlideShowApi class
*
* @author Stephan Gambke
* @file
* @ingroup SemanticResultFormats
*/

use ParamProcessor\ParamDefinition;

/**
* API module to retrieve formatted results for a given page, printouts and template.
*
* @author Stephan Gambke
* @ingroup SemanticResultFormats
*/
class SRFSlideShowApi extends ApiBase {
Expand Down

0 comments on commit ae710c5

Please sign in to comment.