From a5619cc9d8f7960dafb7753ed9f75f0a062c0ad4 Mon Sep 17 00:00:00 2001 From: jackbravo <jackbravo@625475ce-881a-0410-a577-b389adb331d8> Date: Thu, 6 Sep 2007 16:36:53 +0000 Subject: [PATCH] one more :P code type is sql --- manual/new/docs/en/searching.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/new/docs/en/searching.txt b/manual/new/docs/en/searching.txt index 835eb3c01..ed8a12982 100644 --- a/manual/new/docs/en/searching.txt +++ b/manual/new/docs/en/searching.txt @@ -16,7 +16,7 @@ class NewsItem extends Doctrine_Record </code> Now lets say we have an application where users are allowed to search for different news items, an obvious way to implement this would be building a form and based on that form build DQL queries such as: -<code> +<code type="sql"> SELECT n.* FROM NewsItem n WHERE n.title LIKE ? OR n.content LIKE ? </code>