Steven Wittens
410f301006
Tweak api.module output
2005-01-11 07:04:37 +00:00
Steven Wittens
fc4e2487b8
Various additions, improvements and fixes to the search documentation.
2005-01-11 06:49:11 +00:00
Steven Wittens
0b8ff5d19f
- Oopsie
2005-01-11 05:01:15 +00:00
Steven Wittens
857082ce7e
- Ensure word length <= 50 bytes
2005-01-11 04:50:00 +00:00
Steven Wittens
854fa41fb3
- Fixing duplicate rows error during indexing
...
- Fixing broken "pagerank" detection
2005-01-11 03:37:13 +00:00
Steven Wittens
59a2c464c7
- Fix search excerpt highlighter marking substrings of words too + small improvements
2005-01-10 23:37:26 +00:00
Dries Buytaert
3f34a78d18
- Renamed 'visit' to 'view'.
2005-01-10 20:26:02 +00:00
Dries Buytaert
e7777956f9
- Watchdog improvement: added a 'view' link for 'access denied' messages.
2005-01-10 20:25:34 +00:00
Dries Buytaert
f4132656b1
- Patch #15399 by adschar: fixed PHP5 error when a new session is inserted into the session table. (Better fix.)
2005-01-10 19:36:21 +00:00
Dries Buytaert
2e5f82c1e1
- Patch #15399 by adschar: fixed PHP5 error when a new session is inserted into the session table.
2005-01-10 19:33:23 +00:00
Steven Wittens
8655d4368a
- Fixing a couple of watchdog() calls.
2005-01-09 12:58:53 +00:00
Dries Buytaert
075b443860
- Improved the watchdog message
2005-01-09 10:19:42 +00:00
Dries Buytaert
37d9be8f33
- Updated watchod call.
2005-01-09 10:07:17 +00:00
Dries Buytaert
df6fe90286
- Updated two watchdog calls.
2005-01-09 10:06:26 +00:00
Dries Buytaert
e92ed71379
- Patch #15328 by Goba: add error marker border for textareas
2005-01-09 10:00:22 +00:00
Steven Wittens
20b0e9d05d
#15347 : PHP5 typecasting error
2005-01-09 09:58:33 +00:00
Dries Buytaert
8365459b45
- The watchdog icons.
2005-01-09 09:50:19 +00:00
Dries Buytaert
64b100d19a
- Patch #13260 by UnConeD: watchdog module improvements.
...
We added a 'severity' column to watchdog():
watchdog($type, $message, $link) --> watchdog($type, $message, $severity, $link);
* Specify a severity in case you are reporting a warning or error.
* The $link-parameter is now the fourth parameter instead of the third.
TODO: document this in the upgrade guide.
2005-01-09 09:22:40 +00:00
Dries Buytaert
0830efe9a6
- Patch #15337 by Gerhard: fixed a broken date query in the database scheme.
2005-01-09 09:04:24 +00:00
Dries Buytaert
61783651ed
- Patch #15254 : removed hardcoded 'public' schema from the PostgreSQL backend.
2005-01-07 19:18:05 +00:00
Dries Buytaert
0f91dce414
- Patch #15247 by Drumm: simplified the logout code.
2005-01-07 18:01:13 +00:00
Steven Wittens
1e66e1ff75
- Pushbutton: fix background arrow overlapping foreground in IE (peekaboo bug)
2005-01-07 06:48:44 +00:00
Dries Buytaert
7f890fd1b1
- Patch #15184 by drumm: clean up user password mailing.
...
+ After mailing the password, set a message and go to the login form (was print a message as the entire page).
+ Provide feedback if neither field was filled in.
+ Make it a full menu callback instead of going through user_page().
+ Fixed some indentation.
+ Changed some double quotes to single quotes.
+ Made sure all if statements have {}.
2005-01-06 20:38:19 +00:00
Steven Wittens
9d6253374d
#15185 : Fix front page handling of blocks
2005-01-06 01:17:31 +00:00
Dries Buytaert
fc143ca3af
- Modified patch #15122 by killes: fixed some PHP5 problems.
2005-01-04 20:54:23 +00:00
Dries Buytaert
fe58724f25
- Small bugfix + small improvement.
2005-01-04 19:52:33 +00:00
Steven Wittens
0bda8f4700
#14548 : Add optional HTML help to filter.module's HTML filter.
2005-01-03 01:09:02 +00:00
Dries Buytaert
ceb20b45e5
- Small change
2004-12-31 09:31:54 +00:00
Dries Buytaert
1dbe0dc2ee
- Patch #14917 by UnConeD/Steven:
...
1) The different types of search, which used to be radio button options in the search form, are now subtabs of "search" (default "search/node"). This seems better from a UI point of view, but also has another advantage: modules which implement a custom search form (flexinode, project) can add it as a subtab of search. This means that all search forms will be located in the same place, and also without needing an extra api call to search.module.
2) The current code was a bit hackish, as the indexing of comments along with nodes was hardcoded in node.module. Instead, I created a nodeapi operation "update index" which allows modules to add more data for a node that is being indexed. Comments are now indexed using this mechanism and from comment.module, which is a lot cleaner.
3) The search results format was also hardcoded to include "N comments". I replaced this with a nodeapi operation "search result" and moved the comment code to comment.module where it belongs. This op is quite useful, as for example I also modified upload.module to add "N attachments" to a search result if any are present.
2004-12-31 09:30:12 +00:00
Dries Buytaert
828be2ad61
- Patch #13020 by chx: let Drupal handle multiple database layers.
...
- Removed the PEAR database backend. It's no longer being used/maintained.
2004-12-30 13:13:22 +00:00
Dries Buytaert
26875e9b38
- Added missing space
2004-12-29 23:03:05 +00:00
Dries Buytaert
627699cc9e
- Patch #14545 by nysus: don't grant access to files if the node is not accessible.
2004-12-29 23:01:01 +00:00
Dries Buytaert
bc9aeff7dd
- Patch #14890 : corrected the documentation of conf_init().
2004-12-29 19:56:25 +00:00
Dries Buytaert
09c55017f6
- Patch #14882 by Jeremy: removed some cruft: status = 2 is no more.
2004-12-29 18:41:52 +00:00
Dries Buytaert
5049c3e1e4
- Reorganized the code a bit
2004-12-28 22:42:47 +00:00
Dries Buytaert
f4dfafe860
- Patch #14852 by Goba: show the number of posts at each day.
2004-12-28 18:47:44 +00:00
Dries Buytaert
0fb0a93965
- Improved the input checking.
2004-12-28 11:04:24 +00:00
Dries Buytaert
ddbec122dc
- Forgot to close a tag in the help text.
2004-12-27 12:29:33 +00:00
Dries Buytaert
f763bb731e
- Made the ping module ping pingomatic.com, which in turn, will ping all the major ping services.
...
Less code to ping more services.
2004-12-27 12:27:02 +00:00
Dries Buytaert
49f4123976
- Fixed two SQL bugs in the queue.module. Fixes #14115 .
2004-12-27 11:46:48 +00:00
Dries Buytaert
05ede21745
- Patch #6308 by gordon: allow node_submit() to be used by external interfaces.
2004-12-26 20:10:02 +00:00
Steven Wittens
7132e7d528
#14757 : Fix XSS vulnerability due to entity usage.
2004-12-25 14:57:39 +00:00
Steven Wittens
11358d74e4
#10457 : Warnings during update process
2004-12-24 06:52:02 +00:00
Steven Wittens
57e402e0d0
#10949 : Incorrect output with invalid term id
2004-12-24 06:48:57 +00:00
Steven Wittens
61b174e7d2
#11548 : node.module - Ensure that only valid fields are saved
2004-12-24 06:44:11 +00:00
Steven Wittens
59558ede9e
#13531 : Xtemplate {directory} tag
2004-12-24 06:39:59 +00:00
Dries Buytaert
fde5f1bf6f
- Patch #14709 by matteo: added missing call to the nodeapi's 'view' hook.
2004-12-23 23:26:14 +00:00
Dries Buytaert
b2e04ead89
- Patch #14710 by tangent: only show post button if preview is optional or if we are in preview mode. We show the post button in preview mode even if there are form errors so that optional form elements (e.g., captcha) can be updated in preview mode.
2004-12-23 06:47:24 +00:00
Dries Buytaert
046536f470
- Patch #12366 by mathias: fixed missing book edit tab.
2004-12-22 20:47:47 +00:00
Dries Buytaert
9f2952aa3f
- Bug #14609 : improved the status messages and avoid empty roles being saved.
2004-12-22 08:51:39 +00:00