summaryrefslogtreecommitdiff
path: root/includes/comment.inc
Commit message (Collapse)AuthorAge
* - fixed issue depricated call-by-reference issuesDries Buytaert2001-03-29
| | | | | | | | | - fixed small visual glitch in includes/function.inc - changed SQL tables around a bit to be more consistent (result: small changes to a lot of different files) - improved robustness of includes/node.inc - improved output of cron.module - improved output of node.php
* - simplified the comment code: the SQL queries are less complex, thusDries Buytaert2001-03-24
| | | | faster now.
* removed the "add comment" button in the comment moderation boxSteven Wittens2001-03-21
|
* - fixed small glitch as a result from David's patchDries Buytaert2001-03-10
|
* - applied David Norman's patch to turn all <?'s into fully qualifiedDries Buytaert2001-03-10
| | | | <?php's.
* - more small improvementsDries Buytaert2001-03-08
|
* - small bugfixDries Buytaert2001-03-08
|
* - some important changes to our theme API which can be summerized as:Dries Buytaert2001-03-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | abstract() + article() = story() abstract() and article() have been merged into a new function story() which looks like: function story($story_object, $reply) { if (!reply) { // full story } else { // main page version / abstract } } This should allow you to "compress" your theme as abstract() and article() tended to be 98% identical. => I didn't really merge your themes so I leave it up to *you* to improved the code!!! Do it ASAP as we release drupal 2.00 in 7 days. In future we'll have similar functions for other content types as for example: review($review, $reply); enquete($enquete, $reply); ...
* A rather large and important update:Dries Buytaert2001-03-07
| | | | revised most of the SQL queries and tried to make drupal as secure as possible (while trying to avoid redundant/duplicate checks). For drupal's sake, try to screw something up. See the mail about PHPNuke being hacked appr. 6 days ago. The one who finds a problem is rewarded a beer (and I'm willing to ship it to Norway if required). I beg you to be evil. Try dumping a table a la "http://localhost/index.php?date=77778;DROP TABLE users" or something. ;)
* - fixed small translation glitch in format_intervalDries Buytaert2001-03-01
| | | | | | - added a couple of missing t() functions - improved the comments module, fixed the score problem Jeroen reported earlier -> it's slicker but I hope it won't break anything
* - added fine-grained user permission system which allows us to giveDries Buytaert2001-02-18
| | | | | | | | | certain users access to specific administration sections only. Ex. a FAQ maintainer can only edit the FAQ, and members of an "editorial board" can only edit comments, diaries and stories, .. - code review => rewrote include/user.inc which is much easier now - fixed 4 small bugs
* - More updates on the translation supportDries Buytaert2001-02-17
|
* - initial import of the preliminary translation code.Dries Buytaert2001-02-12
| | | | | | | | - added timer.inc for benchmarking purpose - bugfix for php-clean - bugfix for account.php - removed redundant format_data - ...
* - various updates, bugfixes and improvementsDries Buytaert2001-02-04
|
* - fixed ieni-wienie small bug in comment.inc (reported by NotZen)Dries Buytaert2001-01-25
|
* - fixed some bugs in the new comment/discussion code and added a fewDries Buytaert2001-01-21
| | | | enhancements
* - 2 more bugfixesDries Buytaert2001-01-20
|
* - 3 small bugfixesDries Buytaert2001-01-20
|
* - updated/improved discussion engine: it needs additional fine-tuningDries Buytaert2001-01-20
| | | | | | | | | | | | | | | | | | | though but I think this is stable enough for public consumption and real-life testing. ==> a first big step towards a flexible comment engine. IMPORTANT: - Required theme updatins: UnConeD: check your $theme->controls() as I added a very, very dummy implementation - Required database updates: alter table users modify mode tinyint(1) DEFAULT '' NOT NULL; alter table comments change sid lid int(6) DEFAULT '0' NOT NULL; alter table comments add link varchar(16) DEFAULT '' NOT NULL; update comments set link = 'story';
* - fixed bug in search.phpDries Buytaert2000-11-03
- fixed bug in discussion.php - theme update: comment() now takes 3 arguments: $comment - an object with comment data $link - a link to the reply form of that particular comment $thread - the subthread of that particular comment - theme 'marvin' and theme 'zaphod' are updated, theme 'unconed' is left to be done