https://bugzilla.wikimedia.org/show_bug.cgi?id=47073

       Web browser: ---
            Bug ID: 47073
           Summary: Ask not equal with space
           Product: MediaWiki extensions
           Version: REL1_20 branch
          Hardware: All
                OS: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: Unprioritized
         Component: Semantic MediaWiki
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected], [email protected]
    Classification: Unclassified
   Mobile Platform: ---

Description:

Ask: [[Qoute/Properties::+]] [[Author::!Boris Pasternak]]

is not working properly, because spaces is replaced by an underscore


Resolving:


\includes\storage\SQLStore\SMW_SQLStore3_Queries.php

542:    $value = $description->getDataItem()->getSortKey();

=>

542:    $value = str_replace("_", " ",
$description->getDataItem()->getSortKey());


\includes\storage\compatSQLStore\SMW_SQLStore2_Queries.php

507:    $value = $description->getDataItem()->getSortKey();

=>

507:    $value = str_replace("_", " ",
$description->getDataItem()->getSortKey());

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to