Index: trunk/phase3/includes/filerepo/LocalFile.php |
— | — | @@ -32,9 +32,10 @@ |
33 | 33 | /**#@+ |
34 | 34 | * @private |
35 | 35 | */ |
36 | | - var $fileExists, # does the file file exist on disk? (loadFromXxx) |
37 | | - $historyLine, # Number of line to return by nextHistoryLine() (constructor) |
38 | | - $historyRes, # result of the query for the file's history (nextHistoryLine) |
| 36 | + var |
| 37 | + $fileExists, # does the file file exist on disk? (loadFromXxx) |
| 38 | + $historyLine, # Number of line to return by nextHistoryLine() (constructor) |
| 39 | + $historyRes, # result of the query for the file's history (nextHistoryLine) |
39 | 40 | $width, # \ |
40 | 41 | $height, # | |
41 | 42 | $bits, # --- returned by getimagesize (loadFromXxx) |
— | — | @@ -53,7 +54,7 @@ |
54 | 55 | $upgraded, # Whether the row was upgraded on load |
55 | 56 | $locked, # True if the image row is locked |
56 | 57 | $missing, # True if file is not present in file system. Not to be cached in memcached |
57 | | - $deleted; # Bitfield akin to rev_deleted |
| 58 | + $deleted; # Bitfield akin to rev_deleted |
58 | 59 | |
59 | 60 | /**#@-*/ |
60 | 61 | |