diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-06-03 11:47:10 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-06-03 11:47:10 -0700 |
commit | 8e63ec327f9505aac31a9608d16a1f602289f9df (patch) | |
tree | e961413125e361ce7fd0d39bdc78661061dfa952 /htdocs/src/Post.inc.php | |
parent | 26f071d6cca5c3a8b9f3b18aa010f2d98236f804 (diff) |
Added location field
Diffstat (limited to 'htdocs/src/Post.inc.php')
-rw-r--r-- | htdocs/src/Post.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/htdocs/src/Post.inc.php b/htdocs/src/Post.inc.php index 93b1369..9747d3f 100644 --- a/htdocs/src/Post.inc.php +++ b/htdocs/src/Post.inc.php @@ -233,6 +233,10 @@ class Post { return $this->info['location']; } + public function setLocation($value) { + $this->info['location'] = $value; + } + public function getImages() { if ($this->images == null) { $this->loadImages(); |