Changeset 66d2152 in github
- Timestamp:
- Mar 4, 2012 2:59:46 AM (15 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- 6205a30
- Parents:
- 54d0746
- Files:
-
- 6 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/html.php (modified) (2 diffs)
-
program/include/iniset.php (modified) (1 diff)
-
program/include/rcube_charset.php (modified) (1 diff)
-
program/include/rcube_contacts.php (modified) (1 diff)
-
program/lib/PEAR.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r54d0746 r66d2152 2 2 =========================== 3 3 4 - Exclude E_STRICT from error_reporting for PHP 5.4 4 5 - Copy all skins in installto script (#1488376) 5 6 - Prevent from folder selection on virtual folder collapsing (#1488346) -
program/include/html.php
rfd6f6e2 r66d2152 336 336 $this->type = $attrib['type']; 337 337 } 338 339 if ($attrib['newline']) {340 $this->newline = true;341 }342 338 } 343 339 … … 382 378 */ 383 379 384 class html_hiddenfield extends html _inputfield380 class html_hiddenfield extends html 385 381 { 382 protected $tagname = 'input'; 386 383 protected $type = 'hidden'; 387 384 protected $fields_arr = array(); 388 protected $ newline = true;385 protected $allowed = array('type','name','value','onchange','disabled','readonly'); 389 386 390 387 /** -
program/include/iniset.php
r7fe3811 r66d2152 69 69 } 70 70 71 ini_set('error_reporting', E_ALL &~E_NOTICE);71 ini_set('error_reporting', E_ALL &~ (E_NOTICE | E_STRICT)); 72 72 73 73 // increase maximum execution time for php scripts -
program/include/rcube_charset.php
r20efa59 r66d2152 79 79 * @param string Error message 80 80 */ 81 public function error_handler($errno, $errstr)81 public static function error_handler($errno, $errstr) 82 82 { 83 83 throw new ErrorException($errstr, 0, $errno); -
program/include/rcube_contacts.php
rf9a9677 r66d2152 884 884 * @return boolean New name on success, false if no data was changed 885 885 */ 886 function rename_group($gid, $newname )886 function rename_group($gid, $newname, &$new_gid) 887 887 { 888 888 // make sure we have a unique name -
program/lib/PEAR.php
r8c124b9 r66d2152 264 264 * @return bool true if parameter is an error 265 265 */ 266 function isError($data, $code = null)266 static function isError($data, $code = null) 267 267 { 268 268 if (!is_object($data) || !is_a($data, 'PEAR_Error')) {
Note: See TracChangeset
for help on using the changeset viewer.
