diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-11-02 09:23:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-11-02 09:23:07 +0000 |
commit | 8a866e6d51ba27eecc186e7001bfcc4af42e6dfe (patch) | |
tree | 736ae0a9b4169bd96fe7f1c94d11588a989549ea /includes/story.inc | |
parent | 70520c7b0548bd70b30b1c553bda087c7321e1dc (diff) | |
download | brdo-8a866e6d51ba27eecc186e7001bfcc4af42e6dfe.tar.gz brdo-8a866e6d51ba27eecc186e7001bfcc4af42e6dfe.tar.bz2 |
- Fixed quote bug in the comment tracker.
(suggestion UnConeD)
- Added anchors to comment links to easy comment navigation.
(suggestion UnConeD)
- Fixed duplicate `you voted' after moderating a story.
(suggestion UnConeD)
- Fixed quote bug in administration center.
- Expanded user administration with timezone information.
- Improved the theme system by eliminating the "preview" function.
Let's not make the system more complex then it ought to be.
- Refined watchdog administration.
- ...
Diffstat (limited to 'includes/story.inc')
-rw-r--r-- | includes/story.inc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/includes/story.inc b/includes/story.inc new file mode 100644 index 000000000..31deede65 --- /dev/null +++ b/includes/story.inc @@ -0,0 +1,14 @@ +<? + +class Story { + function story($userid, $subject, $abstract, $article, $category, $timestamp) { + $this->userid = $userid; + $this->subject = $subject; + $this->abstract = $abstract; + $this->article = $article; + $this->category = $category; + $this->timestamp = $timestamp; + } +} + +?>
\ No newline at end of file |