Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | configuration called $smwgSparqlDefaultGraph |
15 | 15 | * Use of native MediaWiki sortable tables for the table formats. |
16 | 16 | * Added value distribution functionality that can be used by result formats. |
17 | | -* Added validation and manipulation of the format paremeter using Validator. |
| 17 | +* Added validation and manipulation of the format parameter using Validator. |
18 | 18 | * Added 'class' parameter to the 'table' format, which allows setting the CSS |
19 | 19 | class. |
20 | 20 | * Added automatically-generated CSS classes for rows and cells in 'table' format. |
— | — | @@ -36,8 +36,9 @@ |
37 | 37 | * Fixed some issues with the category result format (including bug 30761). |
38 | 38 | * Fixed email validation issue (bug 32295). |
39 | 39 | * Fixed incorrect handling of sort and order parameters on Special:Ask (bug 32706). |
40 | | -* Fixed display of images to old behaviour after a recent regression. |
| 40 | +* Fixed display of images to old behavior after a recent regression. |
41 | 41 | * Fixed several more issues not listed here. |
| 42 | +* Fixed fatal error in the concept cache maintenance script (bug 32592). |
42 | 43 | |
43 | 44 | == SMW 1.6.1 == |
44 | 45 | |
Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore2_Queries.php |
— | — | @@ -101,7 +101,7 @@ |
102 | 102 | return $this->m_errors; |
103 | 103 | } |
104 | 104 | |
105 | | - $values = $this->m_store->getPropertyValues( $concept, new SMWDIProperty( '_CONC' ) );// two lines due to "strict standards" warning |
| 105 | + $values = $this->m_store->getPropertyValues( SMWDIWikiPage::newFromTitle( $concept ), new SMWDIProperty( '_CONC' ) );// two lines due to "strict standards" warning |
106 | 106 | $di = end( $values ); |
107 | 107 | $desctxt = ( $di !== false ) ? $di->getConceptQuery() : false; |
108 | 108 | $this->m_errors = array(); |
Index: trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | } |
36 | 36 | |
37 | 37 | // The SMW version number. |
38 | | -define( 'SMW_VERSION', '1.7 beta 1' ); |
| 38 | +define( 'SMW_VERSION', '1.7 beta 2' ); |
39 | 39 | |
40 | 40 | // Registration of the extension credits, see Special:Version. |
41 | 41 | $wgExtensionCredits['semantic'][] = array( |