summaryrefslogtreecommitdiff
path: root/modules/system
Commit message (Collapse)AuthorAge
* #159527 by chx, webernet and pwolanin: fix system admin menus if admin menu ↵Gábor Hojtsy2007-09-01
| | | | was moved from the default location
* #165957 by hswong3i: create the variables table early, to make some DB ↵Gábor Hojtsy2007-09-01
| | | | driver writing a happier process
* - Patch #171652 by dvessel et al: cleanup some old cruft. Dvessel is on a ↵Dries Buytaert2007-09-01
| | | | patch spree ...
* - Patch #162202 by dvessel: fixed CSS problems in Opera.Dries Buytaert2007-09-01
|
* - Patch #149540 by chx: first user installed as uid = 2 in MySQL 4.1.Dries Buytaert2007-08-30
|
* - Patch #149540 by chx: first user installed as uid = 2 in MySQL 4.1.Dries Buytaert2007-08-30
|
* #134307 by dww, Stefan Nantegaal and dvessel: fix table headers interaction ↵Gábor Hojtsy2007-08-30
| | | | with Safari, so the fieldset contents will not disappear
* #111127 rollback by chx, slightly extended: roll back node_load cache, it ↵Gábor Hojtsy2007-08-30
| | | | needs more thought and discussion, so postponed until at least Drupal 7
* #149567 follow up patch by webernet, slightly modified: update functions ↵Gábor Hojtsy2007-08-30
| | | | need to return an array
* #147657 by chx: menu module update functionGábor Hojtsy2007-08-29
|
* #57676 by JohnAlbin et al: properly support theme engine and theme specific ↵Gábor Hojtsy2007-08-29
| | | | settings via a theme-settings.php file
* #149567 by chx and meba: set install_task variable to 'done' on update, so ↵Gábor Hojtsy2007-08-29
| | | | installer cannot be run on Drupal 6 on an upgraded site
* #155828 by Eaton, pwolanin and jvandyk: let actions live even if ↵Gábor Hojtsy2007-08-29
| | | | actions.module is not turned on
* #170638 by JirkaRybka and chx: move update access variable to settings.php, ↵Gábor Hojtsy2007-08-28
| | | | so we can check whether it is wide open, and we have one place for settings
* #166071 by jjeff and dvessel: move default template preprocess code to ↵Gábor Hojtsy2007-08-28
| | | | template_preprocess, and add *lots* of documentation to template files and functions
* - Patch #165811 by Crell and pwolanin: split system module.Dries Buytaert2007-08-26
|
* #157682 by bjaspan, chx and JirkaRybka: update.php for Drupal 6, to allow ↵Gábor Hojtsy2007-08-26
| | | | near flowless updates
* #111127 by chx: cache node_load(), so heavy operations loading data from ↵Gábor Hojtsy2007-08-25
| | | | external sources and only invoked once (note that you should do everything dynamic in the view op, not the load op)
* #165141 by hswong3i: move literal values out of some core queries to support ↵Gábor Hojtsy2007-08-22
| | | | cross-database compatibility (ie. better SQL parsing and altering options)
* #166593 by hswong3i: move literal values out of some core queries to support ↵Gábor Hojtsy2007-08-22
| | | | cross-database compatibility (ie. better SQL parsing and altering options)
* #160168 by kkaefer and pwolanin: restore lost Drupal 5 functionality of ↵Gábor Hojtsy2007-08-20
| | | | being able to set primary and secondary links differently
* - Patch #80951 by killes, yched et al: block caching.Dries Buytaert2007-08-19
|
* #161136 by hass: the previously aggressive caching incompatible hook_init ↵Gábor Hojtsy2007-08-18
| | | | parts were broken out to hook_boot, so this should be reflected in the help text and check
* #163191 follow up patch by hswong3i and pwolanin: use a has_rows flag where ↵Gábor Hojtsy2007-08-18
| | | | we dont need a counter
* #168429 by gaele: there is no settings module, fixing reference to system ↵Gábor Hojtsy2007-08-18
| | | | module in help text
* - Patch #163191 by hswong3i: removed db_num_rows() for compatibility with ↵Dries Buytaert2007-08-12
| | | | Oracle and DB2. Also a performance improvement. (Correct version this time.)
* - Patch #163191 by hswong3i: removed db_num_rows() for compatibility with ↵Dries Buytaert2007-08-12
| | | | Oracle and DB2. Also a performance improvement.
* #166491 by pwolanin: default theme settings page should display default ↵Gábor Hojtsy2007-08-11
| | | | theme settings, not the theme list
* - Patch #154470 by pwolanin et al: optimize menu queries and indices.Dries Buytaert2007-08-11
|
* #165013 by Eaton: fix image button behaviour by processing the right values ↵Gábor Hojtsy2007-08-10
| | | | coming in the request
* - Patch #136386 by pwolanin: the modules admin page is still not coded for ↵Dries Buytaert2007-08-09
| | | | the new system.
* #164935 by Ralf Stamm: standardize CVS Id tags in files:Gábor Hojtsy2007-08-07
| | | | | | - always include CVS Id tags in all files - add a new line after the CVS Id, if more code or phpdoc follows in the same code block - fix bogus Id tags previously added
* #165141 by hswong3i: when inserting values into VARCHAR fields, we should ↵Gábor Hojtsy2007-08-07
| | | | use quotes, even if the values are numbers
* - Patch #148346 by Steef and drewish: split image.inc into image.inc and ↵Dries Buytaert2007-08-02
| | | | image.gd.inc and improved the documentation.
* - Patch #163723 by Eaton and Frando: fix default page.tpl markup (and ↵Dries Buytaert2007-08-02
| | | | removed some whitespace).
* - Patch #162708 by Eaton and Earl: add support for image buttons to FAPI3.Dries Buytaert2007-07-29
| | | | | | | This is a small form API extension (doesn't break existing code) that facilitates the Drupal 6 upgrade of the Views module. A good example of why it can be beneficial to start upgrading your modules early on in the code freeze. ;)
* #149092 by Gurpartap Singh slightly modified: Usability: generalize timezone ↵Gábor Hojtsy2007-07-25
| | | | discovery to use on user registration
* - Patch #149593 by yched: batch API fixes.Dries Buytaert2007-07-20
|
* - Pach #154216 by asimmonds and Rok Zlender: FormAPI date element broken.Dries Buytaert2007-07-16
|
* - Rollback of patch #147947: lacks proper upgrade path.Dries Buytaert2007-07-15
|
* - Patch #94154 by dww, Earl et al: update notifications for Drupal!Dries Buytaert2007-07-11
| | | | Woot, woot! :)
* - Patch #151055 by pwolanin et al: fixed problems with moving menu items.Dries Buytaert2007-07-09
|
* #156910 by asimmonds: fix code indentation problems introduced with new code ↵Gábor Hojtsy2007-07-05
| | | | in this development cycle; only whitespace changes
* - Patch #151583 by pwolanin, Shakur, webernet, Arancaytar et al: various ↵Dries Buytaert2007-07-04
| | | | menu module fixes.
* - Patch #154398 by quicksketch et al: add dynamic AHAH submission properties ↵Dries Buytaert2007-07-04
| | | | to Forms API. This patch was ready for a long time and is somewhat of a usability improvement (enabler).
* - Patch #126229 by yched: fixed the upgrade path.Dries Buytaert2007-07-04
|
* - Patch #156425 by asimmonds: added missing CVS IDs.Dries Buytaert2007-07-03
|
* - Patch #126229 by ChrisKennedy, asimmonds et al: increase node title ↵Dries Buytaert2007-07-03
| | | | maxlength to 255 so people can use it to enter publictions with really long titles. ;)
* - Patch #33334 by ChrisKennedy and wulf: admin/modules links to 'throttle ↵Dries Buytaert2007-07-03
| | | | configuration page' even when it is disabled.
* - Patch #155986 by Uwe: fixed typos.Dries Buytaert2007-07-02
|