summaryrefslogtreecommitdiff
path: root/htdocs/src
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2011-06-03 11:47:10 -0700
committerJesse Morgan <jesse@jesterpm.net ; true>2011-06-03 11:47:10 -0700
commit8e63ec327f9505aac31a9608d16a1f602289f9df (patch)
treee961413125e361ce7fd0d39bdc78661061dfa952 /htdocs/src
parent26f071d6cca5c3a8b9f3b18aa010f2d98236f804 (diff)
Added location field
Diffstat (limited to 'htdocs/src')
-rw-r--r--htdocs/src/Post.inc.php4
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();