Skip to content

Commit

Permalink
remove calltime pass by reference for php 5.4 compat in class dgs agency
Browse files Browse the repository at this point in the history
  • Loading branch information
benbalter committed Aug 13, 2012
1 parent 61f3814 commit 1dfcb33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/class.dgs-agency.php
Expand Up @@ -7,7 +7,7 @@ class DGS_Agency {

function __construct( $name, $id, $url ) {

foreach ( get_object_vars( &$this ) as $var => $value )
foreach ( get_object_vars( $this ) as $var => $value )
$this->$var = $$var;

}
Expand Down

0 comments on commit 1dfcb33

Please sign in to comment.