Changeset 4507 in subversion
- Timestamp:
- Feb 9, 2011 2:19:56 AM (2 years ago)
- Location:
- trunk/plugins/password
- Files:
-
- 3 edited
-
drivers/directadmin.php (modified) (4 diffs)
-
drivers/xmail.php (modified) (1 diff)
-
package.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/password/drivers/directadmin.php
r2871 r4507 317 317 318 318 } 319 320 list($this->result_header, $this->result_body) = split("\r\n\r\n",$this->result,2);319 320 list($this->result_header, $this->result_body) = explode("\r\n\r\n", $this->result, 2); 321 321 322 322 if ($this->bind_host) … … 379 379 if ($asArray) 380 380 { 381 return split("\n",$this->fetch_body());381 return explode("\n", $this->fetch_body()); 382 382 } 383 383 … … 439 439 function fetch_header( $header = '' ) 440 440 { 441 $array_headers = split("\r\n",$this->result_header);442 441 $array_headers = explode("\r\n", $this->result_header); 442 443 443 $array_return = array( 0 => $array_headers[0] ); 444 444 unset($array_headers[0]); … … 446 446 foreach ( $array_headers as $pair ) 447 447 { 448 list($key,$value) = split(": ",$pair,2);448 list($key,$value) = explode(": ", $pair, 2); 449 449 $array_return[strtolower($key)] = $value; 450 450 } -
trunk/plugins/password/drivers/xmail.php
r4199 r4507 21 21 { 22 22 $rcmail = rcmail::get_instance(); 23 list($user,$domain) = split('@',$_SESSION['username']);23 list($user,$domain) = explode('@', $_SESSION['username']); 24 24 25 25 $xmail = new XMail; -
trunk/plugins/password/package.xml
r4472 r4507 37 37 - Fix extended error messages handling (#1487676) 38 38 - Fix double request when clicking on Password tab in Firefox 39 - Fix deprecated split() usage in xmail and directadmin drivers (#1487769) 39 40 </notes> 40 41 <contents>
Note: See TracChangeset
for help on using the changeset viewer.
