summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxue <>2007-02-16 21:01:27 +0000
committerxue <>2007-02-16 21:01:27 +0000
commitfd072091cdc74703a88dae7bcb4ae6dea399188a (patch)
treeb07e6a7367166d50d4dc8b53e3c556161265680e
parentc9fa3e509a139cbbf1dce9d008a2923fa081f333 (diff)
Added Polish language to QS.
-rw-r--r--demos/quickstart/protected/application.xml2
-rw-r--r--framework/Data/TDbCommand.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/quickstart/protected/application.xml b/demos/quickstart/protected/application.xml
index b744b2a0..7fa780c4 100644
--- a/demos/quickstart/protected/application.xml
+++ b/demos/quickstart/protected/application.xml
@@ -26,7 +26,7 @@
</services>
<parameters>
- <parameter id="languages" value="('en'=>'English', 'fr'=>'Français', 'zh' => '中文(简体)')" />
+ <parameter id="languages" value="('en'=>'English', 'fr'=>'Français', 'zh' => '中文(简体)', 'pl'=>'Polski')" />
</parameters>
</application> \ No newline at end of file
diff --git a/framework/Data/TDbCommand.php b/framework/Data/TDbCommand.php
index 5c824b8f..9cf5b0a0 100644
--- a/framework/Data/TDbCommand.php
+++ b/framework/Data/TDbCommand.php
@@ -232,7 +232,7 @@ class TDbCommand extends TComponent
* This is a convenient method of {@link query} when only the first row of data is needed.
* @param boolean whether the row should be returned as an associated array with
* column names as the keys or the array keys are column indexes (0-based).
- * @return array the first row of the query result, false if not result.
+ * @return array the first row of the query result, false if no result.
* @throws TDbException execution failed
*/
public function queryRow($fetchAssociative=true)