Fixed odd unicode character issue

This commit is contained in:
James Miller 2012-01-10 16:11:25 +13:00
parent 80e2985f49
commit 3f59f13c6b

View File

@ -13,14 +13,14 @@ require_once 'thirdparty/spyc/spyc.php';
* Each identifier you specify delimits a new database record.
* This means that every record needs to have an identifier, whether you use it or not.
* - Third level: fields - each field for the record is listed as a 3rd level entry.
* In most cases, the field<EFBFBD>s raw content is provided.
* In most cases, the fieldÕs raw content is provided.
* However, if you want to define a relationship, you can do so using "=>"
*
* There are a couple of lines like this:
* <code>
* Parent: =>Page.about
* </code>
* This will tell the system to set the ParentID database field to the ID of the Page object with the identifier <EFBFBD>about<EFBFBD>.
* This will tell the system to set the ParentID database field to the ID of the Page object with the identifier ÒaboutÓ.
* This can be used on any has-one or many-many relationship.
* Note that we use the name of the relationship (Parent), and not the name of the database field (ParentID)
*