Skip to Content.
Sympa Menu

comanage-dev - [comanage-dev] diff for co_extended_attributes_controller.php

Subject: COmanage Developers List

List archive

[comanage-dev] diff for co_extended_attributes_controller.php


Chronological Thread 
  • From: Scott Koranda <>
  • To: comanage-dev <>
  • Subject: [comanage-dev] diff for co_extended_attributes_controller.php
  • Date: Wed, 12 Oct 2011 15:37:47 -0500

Hi,

To address

https://bugs.internet2.edu/jira/browse/CO-171

I would like to commit this diff:

Index: co_extended_attributes_controller.php
===================================================================
--- co_extended_attributes_controller.php (revision 100)
+++ co_extended_attributes_controller.php (working copy)
@@ -176,6 +176,11 @@
// Commit any changes
$dbc->commit($this);

+ // Since the database representation of the models has been
+ // manipulated directly we need to clear the models in the cache.
+ // See https://bugs.internet2.edu/jira/browse/CO-171
+ clearCache(null, 'models');
+
return(true);
}

@@ -398,6 +403,11 @@
// Commit any changes
$dbc->commit($this);

+ // Since the database representation of the models has been
+ // manipulated directly we need to clear the models in the cache.
+ // See https://bugs.internet2.edu/jira/browse/CO-171
+ clearCache(null, 'models');
+
return(true);
}

@@ -443,4 +453,4 @@
return($p[$this->action]);
}
}
-?>
\ No newline at end of file
+?>

May I commit?

Thanks,

Scott



Archive powered by MHonArc 2.6.16.

Top of Page