silverstripe-blog/code/model
3Dgoo f948afe271 Fixing non int pagination variable server error
If a user tries to paginate the blog using a value that is not an integer SilverStripe will throw a server error.

Example. Visiting `blog/?start=10.1` will cause the following server error:

```You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '10.1' at line 8```

This change casts the pagination variable to an int before using it.
2018-02-20 11:00:09 +13:00
..
Blog.php Fixing non int pagination variable server error 2018-02-20 11:00:09 +13:00
BlogCategory.php FIX Prevent duplicate tags and categories. 2016-02-05 23:21:13 +00:00
BlogPost.php FIX Ensure that draft blog posts are always viewable to users with view draft permission 2017-11-03 14:00:14 +13:00
BlogTag.php FIX Prevent duplicate tags and categories. 2016-02-05 23:21:13 +00:00
CategorisationObject.php Converted to PSR-2 2015-11-21 19:17:29 +13:00