Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Commit

Permalink
Removed PHP 5.3-specific function. Closed #1
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyharris committed Apr 24, 2012
1 parent d1dc11c commit ff0ffef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vendors/shells/queue_sender.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ function _send($results) {
if (@unserialize($val) !== false) {
$val = unserialize($val);
}
$varName = lcfirst(Inflector::camelize($var));
$varName = Inflector::camelize($var);
$varName = strtolower(substr($varName, 0, 1)) . substr($varName, 1);
if (in_array($varName, array('header', 'message'))) {
$varName = '__'.$varName;
}
Expand Down

0 comments on commit ff0ffef

Please sign in to comment.