179180181182183184185186187188189
if (prependPath == null) env.error(L.l("auto_prepend_file '{0}' not found.", prepend)); else { QuercusPage prependPage = getQuercus().parse(prependPath); prependPage.executeTop(env); } } env.executeTop();
194195196197198199200201202203204
if (appendPath == null) env.error(L.l("auto_append_file '{0}' not found.", append)); else { QuercusPage appendPage = getQuercus().parse(appendPath); appendPage.executeTop(env); } } // return; } catch (QuercusExitException e) {
188189190191192193194195196197198
203204205206207208209210211212213