Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WPCT Odoo Connect
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Coopdevs
Website
WordPress
WP Plugins
WPCT Odoo Connect
Merge requests
!6
Fix API Key getter
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix API Key getter
fix/api-key-getter
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Lucas García
requested to merge
fix/api-key-getter
into
main
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
c5bbd33e
1 commit,
2 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
includes/options-page.php
+
1
−
1
Options
@@ -82,5 +82,5 @@ function wpct_oc_settings_section_callback()
*/
function
wpct_oc_get_api_key
()
{
return
isset
(
get_option
(
'wpct_oc_api_key'
)
)
?
get_option
(
'wpct_oc_api_key'
)
:
''
;
return
get_option
(
'wpct_oc_api_key'
)
?
get_option
(
'wpct_oc_api_key'
)
:
''
;
}
Loading