grim/gplate

Parents c1d63e4c57bc
Children 833e190772d0
We should be rendering a file, not a string...
--- a/gplate/gplate-include-function.c Tue Feb 19 02:41:10 2008 -0600
+++ b/gplate/gplate-include-function.c Tue Feb 19 02:51:59 2008 -0600
@@ -55,7 +55,7 @@
if(GPLATE_IS_VARIABLE(variable)) {
const gchar *value = gplate_variable_get_value(variable);
- ret = gplate_template_render(tplate, value, NULL);
+ ret = gplate_template_render_file(tplate, value, NULL);
g_object_unref(G_OBJECT(variable));
} else {