This commit is contained in:
Romain Neutron
2012-05-23 00:01:29 +02:00
parent 41e56ed86b
commit 4afa21d419
346 changed files with 2234 additions and 3759 deletions

View File

@@ -32,7 +32,7 @@ class patch_320c implements patchInterface
*
* @return string
*/
function get_release()
public function get_release()
{
return $this->release;
}
@@ -46,12 +46,12 @@ class patch_320c implements patchInterface
*
* @return Array
*/
function concern()
public function concern()
{
return $this->concern;
}
function apply(base &$databox)
public function apply(base &$databox)
{
$sql = 'TRUNCATE metadatas';
$stmt = $databox->get_connection()->prepare($sql);