Index: trunk/extensions/SemanticMediaWiki/includes/SMW_DataValue.php |
— | — | @@ -61,7 +61,8 @@ |
62 | 62 | // e.g. math. In general, we are not prepared to handle such content properly, and we |
63 | 63 | // also have no means of obtaining the user input at this point. Hence the assignement |
64 | 64 | // just fails. |
65 | | - if (strpos($value,"\x7f") === false) { |
| 65 | + // Note: \x07 was used in MediaWiki 1.11.0, \x7f is used now |
| 66 | + if ((strpos($value,"\x7f") === false) && (strpos($value,"\x07") === false)) { |
66 | 67 | $this->parseUserValue($value); // may set caption if not set yet, depending on datavalue |
67 | 68 | $this->m_isset = true; |
68 | 69 | } else { |