[Cs-content-commits] SF.net SVN: cs-content:[400] trunk/1.0/cs_phpDB.class.php
PHP Templating & Includes System
Brought to you by:
crazedsanity
|
From: <cra...@us...> - 2009-06-29 17:28:32
|
Revision: 400
http://cs-content.svn.sourceforge.net/cs-content/?rev=400&view=rev
Author: crazedsanity
Date: 2009-06-29 17:28:31 +0000 (Mon, 29 Jun 2009)
Log Message:
-----------
Change protected method to public.
/cs_phpDB.class.php:
* run_insert():
-- changed from protected to public.
Modified Paths:
--------------
trunk/1.0/cs_phpDB.class.php
Modified: trunk/1.0/cs_phpDB.class.php
===================================================================
--- trunk/1.0/cs_phpDB.class.php 2009-06-26 17:32:51 UTC (rev 399)
+++ trunk/1.0/cs_phpDB.class.php 2009-06-29 17:28:31 UTC (rev 400)
@@ -133,7 +133,7 @@
/**
* Handles performing the insert statement & returning the last inserted ID.
*/
- protected function run_insert($sql) {
+ public function run_insert($sql) {
$this->exec($sql);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|