Skip to content

Commit

Permalink
fix(#1623): fix xmlns and xmlns:xsi values
Browse files Browse the repository at this point in the history
Replaced `https` by `http` in  `xmlns` and `xmlns:xsi` attribute values, to fix XML validation errors.
  • Loading branch information
landure authored and jordisala1991 committed Apr 3, 2023
1 parent 28aec33 commit 2875ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/config/doctrine/BaseUser.mongodb.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<doctrine-mongo-mapping xmlns="https://doctrine-project.org/schemas/odm/doctrine-mongo-mapping" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping https://www.doctrine-project.org/schemas/odm/doctrine-mongo-mapping.xsd">
<doctrine-mongo-mapping xmlns="http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/odm/doctrine-mongo-mapping https://www.doctrine-project.org/schemas/odm/doctrine-mongo-mapping.xsd">
<mapped-superclass name="Sonata\UserBundle\Document\BaseUser">
<field name="username" type="string"/>
<field name="usernameCanonical" type="string"/>
Expand Down

0 comments on commit 2875ef9

Please sign in to comment.