summaryrefslogtreecommitdiff
path: root/themes/engines/phptemplate
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-02 03:57:22 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-06-02 03:57:22 +0000
commitdb081c14483f54577bbb82aad11ff43a4aafb2b0 (patch)
tree525596198ff80e3539ffc0fb7aa91cb7bf70e011 /themes/engines/phptemplate
parent39c302eec0a64183207bbbf7cc6bb7adfae16ef7 (diff)
downloadbrdo-db081c14483f54577bbb82aad11ff43a4aafb2b0.tar.gz
brdo-db081c14483f54577bbb82aad11ff43a4aafb2b0.tar.bz2
#422116 by JohnAlbin: Kill off theme_engine_name prefix for theme functions to assist with theme inheritance and TX (Themer eXperience).
Diffstat (limited to 'themes/engines/phptemplate')
-rw-r--r--themes/engines/phptemplate/phptemplate.engine3
1 files changed, 1 insertions, 2 deletions
diff --git a/themes/engines/phptemplate/phptemplate.engine b/themes/engines/phptemplate/phptemplate.engine
index e0feb580d..23d86854e 100644
--- a/themes/engines/phptemplate/phptemplate.engine
+++ b/themes/engines/phptemplate/phptemplate.engine
@@ -20,8 +20,7 @@ function phptemplate_init($template) {
* we need to.
*/
function phptemplate_theme($existing, $type, $theme, $path) {
- $templates = drupal_find_theme_functions($existing, array('phptemplate', $theme));
+ $templates = drupal_find_theme_functions($existing, array($theme));
$templates += drupal_find_theme_templates($existing, '.tpl.php', $path);
return $templates;
}
-