| Commit message (Collapse) | Author | Age |
|
|
|
| |
- adds missing links.
|
|
|
|
|
|
| |
- title of "blog it" item is used as default node title.
- added link to news feed admin pages on import_page.
- "blog it" link only shows when the blog module is available.
|
| |
|
| |
|
| |
|
|
|
|
| |
prefer "Drupal" instead of "drupal".
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- removing the need to enable weblogs ping so it matches locale and bloggerapi.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
NOTE: I remove the gravity stuff as this optional and already documented
in rating.module.
|
|
|
|
|
|
|
| |
- removed admin options for queue and comment module if the modules are not
loaded.
- nodes are now auto promoted when queue module isn't enabled.
- moderation result block is now visible by the node author.
|
|
|
|
| |
by Natrak.
|
| |
|
|
|
|
|
| |
handbook. The documentation is not particulary exciting/good but
it is better than what it used to be.
|
|
|
|
|
|
| |
- Revised the documentation: fixed about 5 typos, removed the bit about
downloading the module from the Drupal contributions repository,
updated the installation guidelines, etc.
|
|
|
|
| |
settings that require crontab, make some things more consistent, etc.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
- Added links to see poll results when you haven't voted yet (and to go back).
- Cleaned up code and moved large sections into separate functions for cleaner code
- Cleaned up the way of distinguishing between multiple polls on one page (now it just uses the nid)
|
|
|
|
|
|
|
|
|
|
| |
- fixed comment flat list view missing 1 comment.
- changed update.php around a bit.
* security check isn't in effect if the db hasn't been updated.
* instructions re-organized.
* fixed some minor updates.
- updated database.mysql done by UnConeD.
- changelog update.
|
|
|
|
| |
- Added timestamp (created) sorting to polls page.
|
|
|
|
| |
Added a page showing a list of older polls.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
for the term rather than only promoted content?". Reported by Barry,
fixed by Revar's patch.
|
| |
|
|
|
|
| |
keep the blocks from ruining theme layouts.
|
| |
|
|
|
|
| |
- reverting a taxonomy patch that added $context checking to node/comments.
|
|
|
|
| |
- added access checks to blog block.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
his sandbox) and fixed some typos in the module's comments.
* Moshe: what are the $wordlist changes you made? Mind to elaborate a
bit on those?
* TODO: validate the SQL queries used in the search module using a SQL
validator tool - I wonder whether they are ANSI compliant.
- // If the word is preceeded by a "+", then this word is required, and
+ // If the word is proceeded by a "+", then this word is required, and
- $inputword = ("INSERT INTO search_index VALUES('$key', ". $node["lno"] .", '$node_type', $value)");
- mysql_query($inputword);
+ db_query("INSERT INTO search_index VALUES('$key', ". $node["lno"] .", '$node_type', $value)");
}
- // Zap the weighted words array, so we dont add multiples.
+ // Zap the weighted words array, so we don't add multiples.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
|
|
|
|
|
|
| |
getting added to the <a> tag as '0="title" 1="Add a new poll."'.
Patch by Revar.
|
|
|
|
| |
function node_index() - it was an empty function.
|
|
|
|
| |
- added some more help text to page.module.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- fixed access checks on the register form, do this before you enter the
_save function. If registrations are disabled the register link will
no longer show (again).
- changed » to », using the names of entities are better than
the numbers.
- fixed user information being set when account is registered (properly this
time, really!)
- reversed the if(!...) commit.
- node_add specifies more defaults.
- added link to blog entries from user page.
|
|
|
|
| |
- fixing the UI to represent what actually happens when you are an admin.
|
| |
|
|
|
|
| |
Node links didn't always show up in the poll side-block, only when having voted. Fixed.
|