diff --git a/plugins/views/views_php_handler_field.inc b/plugins/views/views_php_handler_field.inc
index 9164d9a..f4ea319 100644
--- a/docroot/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc
+++ b/docroot/sites/all/modules/views_php/plugins/views/views_php_handler_field.inc
@@ -111,7 +111,7 @@ class views_php_handler_field extends views_handler_field {
    * @see views_php_views_pre_execute()
    * @see self::php_post_execute()
    */
-  function php_pre_execute() {
+  function pre_execute(&$values) {
     // Ecexute static PHP code.
     if (!empty($this->options['php_setup'])) {
       $function = create_function('$view, $handler, &$static', $this->options['php_setup'] . ';');
@@ -125,14 +125,14 @@ class views_php_handler_field extends views_handler_field {
    *
    * @see views_php_views_post_execute()
    */
-  function php_post_execute() {
+  function post_execute(&$values) {
     // Ecexute value PHP code.
     if (!empty($this->options['php_value'])) {
       $function = create_function('$view, $handler, &$static, $row, $data', $this->options['php_value'] . ';');
     