1. ceec456 fixed active record inconsistency. by Mike Funk · 13 years ago
  2. 27a536d Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into develop by Mike Funk · 13 years ago
  3. 1d160e7 Fix error undefined variable query on count_all_results db active record by Purwandi · 13 years ago
  4. 0f7decc Swap two vars for readability by Andrey Andreev · 13 years ago
  5. 24276a3 Improve database classes by Andrey Andreev · 13 years ago
  6. 0defe5d Updating copyright date to 2012 by Greg Aker · 13 years ago
  7. 7219c07 added query grouping to Active Record by WanWizard · 13 years ago
  8. 03abee3 Fixing soft tabs in a few files. by Greg Aker · 13 years ago
  9. 2c685fb Adding $escape parameter to the order_by function, this enables ordering by custom fields by pporlan · 13 years ago
  10. 0d91fd2 #798: update changelog and typo fix by Mancy · 13 years ago
  11. c4caf5a taking care of LIKE when used in UPDATE statement #798 by Mancy · 13 years ago
  12. f4a4bd8 adding new license file (OSL 3.0) and updating readme to ReST by Derek Jones · 13 years ago
  13. ad17f4b Merged with development by Kyle Farris · 13 years ago
  14. 8afb848 Codeigniter develop latest. by Mike Funk · 13 years ago
  15. 8b4d83b Fixing issue 465: select_max is adding prefix to table aliases when is not necessary by Juan José González · 13 years ago
  16. bff3dfd Use NULL as the default value for offset in limit(x, offset) so that default is not LIMIT 0. by Phil Sturgeon · 13 years ago
  17. f08548b Fixed int typecasting of limit parameter in DB_active_rec.php by Mike Funk · 13 years ago
  18. 0e85763 fixes potential SQL injection vector in Active Record offset() by kenjis · 13 years ago
  19. 81ef70f One more formatting fix. by Kyle Farris · 13 years ago
  20. 2de2fa0 Merged changes with development. by Kyle Farris · 13 years ago
  21. 7611601 Fixed some items based on code comments by gaker. by Kyle Farris · 13 years ago
  22. 0a3176b Small formatting fix. by kylefarris · 13 years ago
  23. 0c147b3 Added get_compiled_select(), get_compiled_insert(), get_compiled_update(), get_compiled_delete(), and reset_query() methods. to the Active Record class. by Kyle Farris · 13 years ago
  24. 7e7338e Fix for issue #106 by Dan Montgomery · 13 years ago
  25. ea4ad9b Added ability to _like paramater side to use 'none', in case one wants to query like instead of where without case being sensitive by Nithin · 13 years ago
  26. b0eae5f Typecast limit and offset in the Database Driver to integers. Fixes https://bitbucket.org/ellislab/codeigniter-reactor/issue/341/active-record-limit-function-have-sql#comment-597403 by Phil Sturgeon · 13 years ago
  27. fcb8c9e Fixed typo in ActiveRecord. by Phil Sturgeon · 13 years ago
  28. 77cc028 Fixed a bug where using this->db->select_max(), this->db->select_min(), etc could throw notices. Thanks to w43l for the patch. by Phil Sturgeon · 13 years ago
  29. e611d8c Fixed having method to insert quotes. by Adam Jackett · 14 years ago
  30. 8a02247 ... set_dbprefix(). Programatically set the prefix, great for multi-site systems that "namespace" with prefixes. by Phil Sturgeon · 14 years ago
  31. 9789f32 Was working on this file so PHP5ified the method visibility scopes. Pointless, but was adding... by Phil Sturgeon · 14 years ago
  32. d01e4a6 hand merged remaining unresolved files following the backout of 648b42a75739, which was a NON-trivial whitespace commit by Derek Jones · 14 years ago
  33. 37f4b9c backed out 648b42a75739, which was a NON-trivial whitespace commit. It broke the Typography class's string replacements, for instance by Derek Jones · 14 years ago
  34. 2e1837a Fix #275 -- regression in db::_compile_select(). Thanks @patwork for the patch by Greg Aker · 14 years ago
  35. 114ab09 Fixed double-space typo. by Razican · 14 years ago
  36. e156c6e Fixed a bug (Core #340) where when passing in the second parameter to $this->db->select(), column names in subsequent queries would not be properly escaped. by Greg Aker · 14 years ago
  37. af6f344 ->db->count_all_results() will now return an integer instead of a string. by Phil Sturgeon · 14 years ago
  38. d0ac1a2 Better potential fix for escaping MySQL keywords with backticks on insert/update. by Phil Sturgeon · 14 years ago
  39. c3a4a8d Whitespace cleanup in db classes by Pascal Kriete · 14 years ago
  40. 0711dc8 Hey look, it's 2011 by Greg Aker · 14 years ago
  41. 741de1c Updating PHP requirements in files 5.1.6 by Greg Aker · 14 years ago
  42. dd67197 Cleanup of stray spaces and tabs by Barry Mieny · 14 years ago
  43. 43753fd Added $ar_keys clearing out to _reset_write(). by Robin Sowell · 14 years ago
  44. 88f8d9f Removing the following deprecated database methods: orwhere, orlike, groupby, orhaving, orderby, getwhere. by Greg Aker · 14 years ago
  45. cf57955 full on scaffolding removal by Derek Jones · 15 years ago
  46. d10e896 added batch insert/update and a replace method to active record by Derek Jones · 15 years ago
  47. 0d42489 Misspelled class property in db class. _like_escape_chr, not _like_escape_char by Greg Aker · 15 years ago
  48. 7f3719f updated copyrights by Derek Jones · 15 years ago
  49. 03d783b bug fix and typo fixes by Derek Allard · 16 years ago
  50. fc395a1 updated copyrights to 2009 by Derek Jones · 16 years ago
  51. e4ed583 added LIKE condition escaping to all drivers and Active Record by Derek Jones · 16 years ago
  52. e37ab38 DB count_all() not returns an integer always by Derek Allard · 16 years ago
  53. ef22efd Added where_in to the list of expected arguments received by delete() by Derek Allard · 16 years ago
  54. 2067d1a Changing EOL style to LF by Derek Allard · 16 years ago
  55. 0efc4d3 Fixed order_by bug #5704 by Rick Ellis · 16 years ago
  56. 849ecde Added AR caching features to update and delete functions by Rick Ellis · 16 years ago
  57. 65837c7 Removed limit and order from the AR caching routine, as these are not supported. by Rick Ellis · 16 years ago
  58. 2301259 Oops! I missed resetting the cache array in the flush function in my last commit. by Rick Ellis · 16 years ago
  59. 392f09d Fixed an AR caching bug: 4995 by Rick Ellis · 16 years ago
  60. 000f89d by Rick Ellis · 16 years ago
  61. 5952359 Fixed a number of bug reports related to table/db names not being escaped or prefixed correctly. by Rick Ellis · 16 years ago
  62. 852160a Swiched to escape() rather then escape_str(), as per bug report #4680 by Rick Ellis · 16 years ago
  63. 9f02e3c Added backticks around column names in where clause. Bug report number: 4668 by Rick Ellis · 16 years ago
  64. ff73401 Did a little clean up. Nothing that affected functionality by Rick Ellis · 16 years ago
  65. 37b3ecf updated copyright by Rick Ellis · 16 years ago
  66. 7e98a27 whitespace, whitespace, schmeitespace by Derek Jones · 17 years ago
  67. c06f58e compacting some whitespace by Derek Jones · 17 years ago
  68. d8364c4 bit of a code cleanup by Derek Allard · 17 years ago
  69. 694096e change AR behaviour so that blank values result in empty quotes by Derek Allard · 17 years ago
  70. a459b46 Fixed a bug (#4561) where orhaving() wasn't properly passing values. by Derek Allard · 17 years ago
  71. 513ce07 Moved the _has_operators() function into DB_driver from DB_active_rec. by Derek Allard · 17 years ago
  72. 0b59f27 Some sweeping syntax changes for consistency: by Derek Jones · 17 years ago
  73. 5fe155e Escape behaviour in where() clauses has changed; values in those with the "FALSE" argument are no longer escaped (ie: quoted). by Derek Allard · 17 years ago
  74. a632589 Fixed a bug in AR compiling, where select statements with arguments got incorrectly escaped (#3478). by Derek Allard · 17 years ago
  75. a3ffbbb Removed closing PHP tags, replaced with a comment block identifying the end of the file by Derek Jones · 17 years ago
  76. c7deac9 Undoing change committed in r1115 by Derek Jones · 17 years ago
  77. 5583e1a removed closing PHP tag from all framework files by Derek Jones · 17 years ago
  78. d007243 flipped the $not flag for or_where_not_in() by Derek Jones · 17 years ago
  79. 7327499 Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to the File Helper. by Derek Allard · 17 years ago
  80. 5162fc7 Fixed an AR bug when joining with a table alias and table prefix (#4400). by Derek Allard · 17 years ago
  81. 16629b1 Fixed a bug that wasn't allowing escaping to be turned off if the value of a query was NULL. by Derek Allard · 17 years ago
  82. 96863ce testing an escape issue by Derek Allard · 17 years ago
  83. e808aac Added the ability to prevent escaping in having() clauses. by Derek Allard · 17 years ago
  84. 8b2f19b change to the way AR handles aliased tables by Derek Allard · 17 years ago
  85. 49ef042 fix silly copy-paste error in active record by Derek Allard · 17 years ago
  86. 43e8cbf added or_having, deprecated orhaving by Derek Allard · 17 years ago
  87. 9a4d1da Fixed an AR_caching error where it wasn't tracking table aliases (#3463) by Derek Allard · 17 years ago
  88. 7825526 cache_stop() fix... by Derek Allard · 17 years ago
  89. 9b3e7b5 Added and documented Active Record caching. Made AR fully database-prefix aware by Derek Allard · 17 years ago
  90. 4a310b7 fix orlike to call or_like by Derek Allard · 17 years ago
  91. c6ad023 Abstracted FROM table listing in Active Record for databases that do not support parenthetic grouping of tables to explicitly define operator precedence by Derek Jones · 17 years ago
  92. 50bce4e fix extraneous returns and variables by Derek Allard · 17 years ago
  93. cdd2ab2 fixing www.codeigniter.com to codeigniter.com by Derek Allard · 17 years ago
  94. 3b11868 Added $this->db->dbprefix() to manually add database prefixes. by Derek Allard · 17 years ago
  95. 7a9193a replaced www.codeigniter.com with codeigniter.com by Derek Jones · 17 years ago
  96. 3d879d5 ExpressionEngine Dev Team in credit by Derek Allard · 17 years ago
  97. 8f00021 reset where_in array after a call (bug# 3259) by Derek Allard · 17 years ago
  98. 05b3a5d orderby fix by Derek Allard · 17 years ago
  99. 39b622d Many new Active Record functions, and another whack of stuff by Derek Allard · 17 years ago
  100. 39af731 removed raw_where and raw_or_where. They duplicated existing functionality better left elsewhere. by Derek Allard · 17 years ago