]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
width and height are now properties in the File class
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 7 May 2014 07:51:37 +0000 (09:51 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 7 May 2014 07:51:37 +0000 (09:51 +0200)
classes/File.php

index d8b20ea678f14ba1c5c8c1b403531f252e95d117..4e85e542d51e4553f907de5a10c7023024f22e17 100644 (file)
@@ -33,6 +33,8 @@ class File extends Managed_DataObject
     public $date;                            // int(4)
     public $protected;                       // int(4)
     public $filename;                        // varchar(255)
+    public $width;                           // int(4)
+    public $height;                          // int(4)
     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
 
     public static function schemaDef()