Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Add Buyers to Joomla Groups for VirtueMart
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VirtueMart
Add Buyers to Joomla Groups for VirtueMart
Commits
b87b37a4
Commit
b87b37a4
authored
10 years ago
by
Reinhold Kainhofer
Browse files
Options
Downloads
Patches
Plain Diff
Fix VM3 and php warnings
parent
22227d01
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
buyer_assign_group.php
+2
-2
2 additions, 2 deletions
buyer_assign_group.php
buyer_assign_group.script.php
+1
-1
1 addition, 1 deletion
buyer_assign_group.script.php
with
3 additions
and
3 deletions
buyer_assign_group.php
+
2
−
2
View file @
b87b37a4
...
...
@@ -62,8 +62,8 @@ class plgVmCustomBuyer_Assign_Group extends vmCustomPlugin {
* We must reimplement this triggers for joomla 1.7
* vmplugin triggers note by Max Milbers
*/
public
function
plgVmOnStoreInstallPluginTable
(
$psType
)
{
return
$this
->
onStoreInstallPluginTable
(
$psType
);
public
function
plgVmOnStoreInstallPluginTable
(
$psType
,
$name
)
{
return
$this
->
onStoreInstallPluginTable
(
$psType
,
$name
);
}
// VM2 Compat:
...
...
This diff is collapsed.
Click to expand it.
buyer_assign_group.script.php
+
1
−
1
View file @
b87b37a4
...
...
@@ -46,7 +46,7 @@ class plgVmCustomBuyer_Assign_GroupInstallerScript
public
function
install
(
JAdapterInstance
$adapter
)
{
// enabling plugin
$db
=
&
JFactory
::
getDBO
();
$db
=
JFactory
::
getDBO
();
$db
->
setQuery
(
'update #__extensions set enabled = 1 where type = "plugin" and element = "buyer_assign_group" and folder = "vmcustom"'
);
$db
->
query
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment